showModel.vue 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389
  1. <template>
  2. <view class="showModel" v-show="disjunctor">
  3. <view class="showModel__wrap">
  4. <view class="showModel__header" v-if="title">
  5. {{ title }}
  6. <text v-if="operate.know == '知道了' && timerFlag">({{ time }})</text>
  7. </view>
  8. <view class="showModel__article" :class="{ p0: textareaFlag, p1: radioInspectionDistanceItem.length, p2: childrenDeptList.length }">
  9. <text
  10. v-if="icon"
  11. class="showModel__icon icon_transport"
  12. :class="[
  13. 'showModel__icon--' + icon,
  14. { 'transport-duigou': icon === 'success' },
  15. { 'transport-shibai': icon === 'error' },
  16. { 'transport-wenhao': icon === 'warn' },
  17. ]"
  18. ></text>
  19. <view v-if="content" class="showModel__content" @click="tel()" v-html="content"></view>
  20. <view v-if="info" class="showModel__info">{{ info }}</view>
  21. <view class="specialCloseFlag" v-if="textareaFlag">
  22. <textarea
  23. style="width: 100%"
  24. placeholder="请输入10~100个文字方可提交!"
  25. maxlength="100"
  26. @input="textareaInput"
  27. />
  28. </view>
  29. <view class="radio-wrap" v-if="radioItem.length">
  30. <radio-group @change="radioChange">
  31. <view v-for="(item, index) in radioItem" :key="item.qrcode" class="radio-item">
  32. <label>
  33. <radio :value="item.qrcode" :checked="index === 0" />
  34. <text>{{ item.deptName }}</text>
  35. </label>
  36. </view>
  37. </radio-group>
  38. </view>
  39. <view class="radio-wrap" v-if="radioInspectionDistanceItem.length">
  40. <radio-group @change="radioChange">
  41. <view v-for="(item, index) in radioInspectionDistanceItem" :key="item.id" class="radio-item">
  42. <label>
  43. <radio :value="item.id" />
  44. <text>{{ item.inspectMode }}</text>
  45. </label>
  46. </view>
  47. </radio-group>
  48. </view>
  49. <view class="childrenDeptList" v-if="childrenDeptList.length">
  50. <view @click="clickHandler(item)" v-for="(item, index) in childrenDeptList" :key="item.id" class="childrenDeptItem">{{ item.dept }}</view>
  51. </view>
  52. </view>
  53. <view class="showModel__footer">
  54. <view
  55. v-if="operate.ok"
  56. class="showModel__ok"
  57. @click="ok"
  58. hover-class="seimin-btn-hover"
  59. >{{ operate.ok || "" }}</view
  60. >
  61. <view
  62. v-if="operate.no"
  63. class="showModel__ok"
  64. @click="no"
  65. hover-class="seimin-btn-hover"
  66. >{{ operate.no || "" }}</view
  67. >
  68. <view
  69. v-if="operate.cancel"
  70. class="showModel__cancel"
  71. @click="cancel"
  72. hover-class="seimin-btn-hover"
  73. >{{ operate.cancel || "" }}</view
  74. >
  75. <view
  76. v-if="operate.know"
  77. class="showModel__know"
  78. @click="know"
  79. hover-class="seimin-btn-hover"
  80. >{{ operate.know || "" }}</view
  81. >
  82. <view
  83. v-if="operate.know && timerFlag"
  84. class="showModel__know"
  85. @click="cancelTimer"
  86. hover-class="seimin-btn-hover"
  87. >取消自动关闭</view
  88. >
  89. </view>
  90. </view>
  91. </view>
  92. </template>
  93. <script>
  94. export default {
  95. data() {
  96. return {
  97. time: 5, //5秒后自动关闭
  98. timer: null, //5秒后自动关闭,定时器
  99. timerFlag: true, //是否显示取消自动关闭按钮
  100. };
  101. },
  102. watch: {
  103. disjunctor(newValue) {
  104. if (newValue && this.operate.know == "知道了") {
  105. this.time = 5;
  106. this.timerFlag = true;
  107. this.timer = setInterval(() => {
  108. this.time--;
  109. if (this.time <= 0) {
  110. clearInterval(this.timer);
  111. this.know();
  112. }
  113. }, 1000);
  114. }
  115. },
  116. },
  117. props: {
  118. // 显示隐藏
  119. disjunctor: {
  120. type: Boolean,
  121. default: false,
  122. },
  123. // 标题
  124. title: {
  125. type: String,
  126. default: "提示",
  127. },
  128. // 图标
  129. icon: {
  130. type: String,
  131. default: "success",
  132. },
  133. // 内容
  134. content: {
  135. type: String,
  136. default: "",
  137. },
  138. // 说明
  139. info: {
  140. type: String,
  141. default: "",
  142. },
  143. // 拨打电话
  144. phone: {
  145. type: String,
  146. default: "",
  147. },
  148. // 特殊情况关闭原因
  149. textareaFlag: {
  150. type: Boolean,
  151. default: false,
  152. },
  153. // 单选框选项
  154. radioItem: {
  155. type: Array,
  156. default: () => {
  157. return [];
  158. },
  159. },
  160. // 单选框选项-陪检方式
  161. radioInspectionDistanceItem: {
  162. type: Array,
  163. default: () => {
  164. return [];
  165. },
  166. },
  167. // 子科室列表
  168. childrenDeptList: {
  169. type: Array,
  170. default: () => {
  171. return [];
  172. },
  173. },
  174. // 操作按钮文字
  175. operate: {
  176. type: Object,
  177. default: () => {
  178. return {
  179. know: "知道了",
  180. };
  181. },
  182. },
  183. },
  184. methods: {
  185. clickHandler(item){
  186. console.log(item);
  187. this.$emit('ok', item)
  188. },
  189. // 单选框选中
  190. radioChange(item){
  191. this.$emit('radioChange',item.target.value)
  192. },
  193. // 输入文字
  194. textareaInput(e) {
  195. this.$emit("textareaInput", e.detail.value);
  196. },
  197. // 确定
  198. ok() {
  199. this.$emit("ok");
  200. },
  201. // 否
  202. no() {
  203. this.$emit("no");
  204. },
  205. // 取消
  206. cancel() {
  207. this.$emit("cancel");
  208. },
  209. // 知道了
  210. know() {
  211. clearInterval(this.timer);
  212. this.$emit("know");
  213. },
  214. // 取消自动关闭
  215. cancelTimer() {
  216. this.timerFlag = false;
  217. clearInterval(this.timer);
  218. },
  219. // 拨打电话
  220. tel() {
  221. if (this.phone) {
  222. uni.makePhoneCall({
  223. phoneNumber: this.phone,
  224. });
  225. }
  226. },
  227. },
  228. };
  229. </script>
  230. <style lang="less" scoped>
  231. .showModel {
  232. position: fixed;
  233. left: 0;
  234. right: 0;
  235. top: 0;
  236. bottom: 0;
  237. background-color: rgba(0, 0, 0, 0.2);
  238. z-index: 999999;
  239. .showModel__wrap {
  240. width: 560rpx;
  241. position: absolute;
  242. left: 50%;
  243. top: 50%;
  244. transform: translate(-50%, -50%);
  245. background-color: #fff;
  246. border-radius: 12rpx;
  247. .showModel__header {
  248. font-size: 36rpx;
  249. color: #000;
  250. height: 84rpx;
  251. display: flex;
  252. justify-content: center;
  253. align-items: center;
  254. }
  255. .showModel__article {
  256. color: #000;
  257. margin: 0 auto 25rpx;
  258. width: 488rpx;
  259. padding: 60rpx 16rpx;
  260. background-color: rgb(249, 250, 251);
  261. border: 2rpx solid rgb(229, 233, 237);
  262. border-radius: 12rpx;
  263. box-sizing: border-box;
  264. display: flex;
  265. flex-direction: column;
  266. justify-content: center;
  267. align-items: center;
  268. text-align: justify;
  269. &.p0 {
  270. padding: 0;
  271. }
  272. &.p1 {
  273. text-align: left;
  274. }
  275. &.p2 {
  276. text-indent: 2em;
  277. }
  278. .childrenDeptList{
  279. width: 100%;
  280. max-height: 50vh;
  281. overflow-y: auto;
  282. .childrenDeptItem{
  283. background-color: #fff;
  284. height: 80rpx;
  285. line-height: 80rpx;
  286. border-radius: 80rpx;
  287. color: #49b856;
  288. margin-top: 24rpx;
  289. white-space: nowrap;
  290. overflow: hidden;
  291. text-overflow: ellipsis;
  292. }
  293. }
  294. .showModel__icon {
  295. font-size: 138rpx;
  296. margin-bottom: 32rpx;
  297. &.showModel__icon--success {
  298. color: rgb(52, 179, 73);
  299. }
  300. &.showModel__icon--warn {
  301. color: rgb(245, 165, 35);
  302. }
  303. &.showModel__icon--error {
  304. color: rgb(255, 58, 82);
  305. }
  306. }
  307. .showModel__content {
  308. font-size: 36rpx;
  309. word-break: break-all;
  310. }
  311. .showModel__info {
  312. font-size: 32rpx;
  313. color: rgb(102, 102, 102);
  314. }
  315. .specialCloseFlag {
  316. width: 90%;
  317. height: 100%;
  318. padding: 16rpx;
  319. }
  320. .radio-wrap{
  321. .radio-item{
  322. margin-top: 16rpx;
  323. /deep/ .uni-radio-input-checked{
  324. background-color: #49b856!important;
  325. border-color: #49b856!important;
  326. }
  327. }
  328. }
  329. }
  330. .showModel__footer {
  331. box-sizing: border-box;
  332. height: 100rpx;
  333. border-top: 2rpx solid rgb(229, 233, 237);
  334. display: flex;
  335. align-items: center;
  336. view {
  337. height: 100%;
  338. display: flex;
  339. align-items: center;
  340. justify-content: center;
  341. font-size: 36rpx;
  342. color: rgb(102, 102, 102);
  343. position: relative;
  344. & ~ view::before {
  345. content: "";
  346. position: absolute;
  347. left: 0;
  348. bottom: 0;
  349. width: 2rpx;
  350. height: 87rpx;
  351. background-color: rgb(229, 233, 237);
  352. }
  353. }
  354. .showModel__ok {
  355. flex: 1;
  356. color: rgb(73, 184, 86);
  357. }
  358. .showModel__cancel {
  359. flex: 1;
  360. }
  361. .showModel__know {
  362. flex: 1;
  363. color: rgb(73, 184, 86);
  364. }
  365. }
  366. }
  367. }
  368. </style>