showModel.vue 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319
  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 }">
  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>
  40. <view class="showModel__footer">
  41. <view
  42. v-if="operate.ok"
  43. class="showModel__ok"
  44. @click="ok"
  45. hover-class="seimin-btn-hover"
  46. >{{ operate.ok || "" }}</view
  47. >
  48. <view
  49. v-if="operate.cancel"
  50. class="showModel__cancel"
  51. @click="cancel"
  52. hover-class="seimin-btn-hover"
  53. >{{ operate.cancel || "" }}</view
  54. >
  55. <view
  56. v-if="operate.know"
  57. class="showModel__know"
  58. @click="know"
  59. hover-class="seimin-btn-hover"
  60. >{{ operate.know || "" }}</view
  61. >
  62. <view
  63. v-if="operate.know && timerFlag"
  64. class="showModel__know"
  65. @click="cancelTimer"
  66. hover-class="seimin-btn-hover"
  67. >取消自动关闭</view
  68. >
  69. </view>
  70. </view>
  71. </view>
  72. </template>
  73. <script>
  74. export default {
  75. data() {
  76. return {
  77. time: 5, //5秒后自动关闭
  78. timer: null, //5秒后自动关闭,定时器
  79. timerFlag: true, //是否显示取消自动关闭按钮
  80. };
  81. },
  82. watch: {
  83. disjunctor(newValue) {
  84. if (newValue && this.operate.know == "知道了") {
  85. this.time = 5;
  86. this.timerFlag = true;
  87. this.timer = setInterval(() => {
  88. this.time--;
  89. if (this.time <= 0) {
  90. clearInterval(this.timer);
  91. this.know();
  92. }
  93. }, 1000);
  94. }
  95. },
  96. },
  97. props: {
  98. // 显示隐藏
  99. disjunctor: {
  100. type: Boolean,
  101. default: false,
  102. },
  103. // 标题
  104. title: {
  105. type: String,
  106. default: "提示",
  107. },
  108. // 图标
  109. icon: {
  110. type: String,
  111. default: "success",
  112. },
  113. // 内容
  114. content: {
  115. type: String,
  116. default: "",
  117. },
  118. // 说明
  119. info: {
  120. type: String,
  121. default: "",
  122. },
  123. // 拨打电话
  124. phone: {
  125. type: String,
  126. default: "",
  127. },
  128. // 特殊情况关闭原因
  129. textareaFlag: {
  130. type: Boolean,
  131. default: false,
  132. },
  133. // 单选框选项
  134. radioItem: {
  135. type: Array,
  136. default: () => {
  137. return [];
  138. },
  139. },
  140. // 操作按钮文字
  141. operate: {
  142. type: Object,
  143. default: () => {
  144. return {
  145. know: "知道了",
  146. };
  147. },
  148. },
  149. },
  150. methods: {
  151. // 单选框选中
  152. radioChange(item){
  153. this.$emit('radioChange',item.target.value)
  154. },
  155. // 输入文字
  156. textareaInput(e) {
  157. this.$emit("textareaInput", e.detail.value);
  158. },
  159. // 确定
  160. ok() {
  161. this.$emit("ok");
  162. },
  163. // 取消
  164. cancel() {
  165. this.$emit("cancel");
  166. },
  167. // 知道了
  168. know() {
  169. clearInterval(this.timer);
  170. this.$emit("know");
  171. },
  172. // 取消自动关闭
  173. cancelTimer() {
  174. this.timerFlag = false;
  175. clearInterval(this.timer);
  176. },
  177. // 拨打电话
  178. tel() {
  179. if (this.phone) {
  180. uni.makePhoneCall({
  181. phoneNumber: this.phone,
  182. });
  183. }
  184. },
  185. },
  186. };
  187. </script>
  188. <style lang="less">
  189. .showModel {
  190. position: fixed;
  191. left: 0;
  192. right: 0;
  193. top: 0;
  194. bottom: 0;
  195. background-color: rgba(0, 0, 0, 0.2);
  196. z-index: 999999;
  197. .showModel__wrap {
  198. width: 560rpx;
  199. position: absolute;
  200. left: 50%;
  201. top: 50%;
  202. transform: translate(-50%, -50%);
  203. background-color: #fff;
  204. border-radius: 12rpx;
  205. .showModel__header {
  206. font-size: 36rpx;
  207. color: 000;
  208. height: 84rpx;
  209. display: flex;
  210. justify-content: center;
  211. align-items: center;
  212. }
  213. .showModel__article {
  214. margin: 40rpx auto 25rpx;
  215. width: 488rpx;
  216. padding: 60rpx 0;
  217. background-color: rgb(249, 250, 251);
  218. border: 2rpx solid rgb(229, 233, 237);
  219. border-radius: 12rpx;
  220. box-sizing: border-box;
  221. display: flex;
  222. flex-direction: column;
  223. justify-content: center;
  224. align-items: center;
  225. &.p0 {
  226. padding: 0;
  227. }
  228. .showModel__icon {
  229. font-size: 138rpx;
  230. margin-bottom: 32rpx;
  231. &.showModel__icon--success {
  232. color: rgb(52, 179, 73);
  233. }
  234. &.showModel__icon--warn {
  235. color: rgb(245, 165, 35);
  236. }
  237. &.showModel__icon--error {
  238. color: rgb(255, 58, 82);
  239. }
  240. }
  241. .showModel__content {
  242. font-size: 36rpx;
  243. }
  244. .showModel__info {
  245. font-size: 32rpx;
  246. color: rgb(102, 102, 102);
  247. }
  248. .specialCloseFlag {
  249. width: 90%;
  250. height: 100%;
  251. padding: 16rpx;
  252. }
  253. .radio-wrap{
  254. .radio-item{
  255. margin-top: 16rpx;
  256. /deep/ .uni-radio-input-checked{
  257. background-color: #49b856!important;
  258. border-color: #49b856!important;
  259. }
  260. }
  261. }
  262. }
  263. .showModel__footer {
  264. box-sizing: border-box;
  265. height: 100rpx;
  266. border-top: 2rpx solid rgb(229, 233, 237);
  267. display: flex;
  268. align-items: center;
  269. view {
  270. height: 100%;
  271. display: flex;
  272. align-items: center;
  273. justify-content: center;
  274. font-size: 36rpx;
  275. color: rgb(102, 102, 102);
  276. position: relative;
  277. &:nth-of-type(2)::before {
  278. content: "";
  279. position: absolute;
  280. left: 0;
  281. bottom: 0;
  282. width: 2rpx;
  283. height: 87rpx;
  284. background-color: rgb(229, 233, 237);
  285. }
  286. }
  287. .showModel__ok {
  288. flex: 1;
  289. color: rgb(73, 184, 86);
  290. }
  291. .showModel__cancel {
  292. flex: 1;
  293. }
  294. .showModel__know {
  295. flex: 1;
  296. color: rgb(73, 184, 86);
  297. }
  298. }
  299. }
  300. }
  301. </style>