seiminModel.vue 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228
  1. <!--
  2. * @Author: 廖明明
  3. * @Date: 2022-04-01 17:11:19
  4. * @LastEditors: 廖明明
  5. * @LastEditTime: 2022-04-02 17:03:14
  6. * @Description: 自定义弹窗组件
  7. -->
  8. <template>
  9. <view class="seiminModel seiminModel_mask" v-if="opts.isVisible">
  10. <view class="seiminModel_container animate__animated animate__fadeIn animate__faster">
  11. <view class="seiminModel_header">{{ opts.title }}</view>
  12. <!-- 动态二维码 -->
  13. <view class="seiminModel_content qrcode" v-if="opts.skin === 'qrcode'">
  14. <image class="w100" :src="nurseCodeImg" mode="widthFix"></image>
  15. <view class="qrcode_operate">
  16. <view class="refreshQRCode" @click="showNurseCode">
  17. 刷新
  18. </view>
  19. <view>{{ refreshQRCodeTime }}s</view>
  20. </view>
  21. </view>
  22. <!-- 正常弹窗 -->
  23. <view class="seiminModel_content" v-html="opts.content" v-else></view>
  24. <view class="seiminModel_footer">
  25. <view class="seiminModel_footer__btn" v-for="(btn, i) in opts.btns" :style="{
  26. flex: btn.flex,
  27. color: btn.textColor,
  28. }" @click="btn.click($event)" :key="i">{{ btn.name }}</view>
  29. </view>
  30. </view>
  31. </view>
  32. </template>
  33. <script>
  34. import {
  35. mapState
  36. } from 'vuex';
  37. import {
  38. reqDeptCodes
  39. } from '../../request/api.js';
  40. export default {
  41. name: "seiminModel",
  42. data() {
  43. return {
  44. // 配置项
  45. opts: {},
  46. // 动态二维码定时器
  47. timer: null,
  48. // 动态二维码qrcode
  49. nurseCodeImg: '',
  50. // 动态二维码刷新间隔时长
  51. refreshQRCodeTime: 30,
  52. };
  53. },
  54. computed: {
  55. ...mapState('user', ['loginInfo']),
  56. },
  57. methods: {
  58. // 显示弹窗
  59. show(args = {}) {
  60. // 默认配置项
  61. let defaultOptions = {
  62. skin: "default", //弹窗风格(default|toast|qrcode|)
  63. isVisible: false, //是否显示弹窗
  64. title: "提示", //标题
  65. content: "", //内容
  66. btns: [{
  67. name: "取消",
  68. textColor: "#666",
  69. flex: 1,
  70. click: this.close
  71. },
  72. {
  73. name: "确定",
  74. textColor: "#666",
  75. flex: 1,
  76. click: this.close
  77. },
  78. ], //弹窗按钮
  79. };
  80. // 根据弹窗风格修改默认配置项
  81. switch (args.skin) {
  82. case "toast":
  83. defaultOptions.btns = [{
  84. name: "知道了",
  85. textColor: "#49b856",
  86. flex: 1,
  87. click: this.close,
  88. }, ];
  89. break;
  90. }
  91. // 按钮合并参数
  92. if (Array.isArray(args.btns)) {
  93. let btns = [];
  94. args.btns.forEach((v, i) => {
  95. btns.push(Object.assign({}, defaultOptions.btns[i], v));
  96. })
  97. args.btns = btns;
  98. }
  99. // 合并配置
  100. this.opts = Object.assign({}, defaultOptions, args, {
  101. isVisible: true,
  102. });
  103. // 如果是动态二维码,则需要发起请求
  104. if (this.opts.skin === 'qrcode') {
  105. this.showNurseCode();
  106. }
  107. },
  108. // 关闭弹窗
  109. close() {
  110. this.opts.isVisible = false;
  111. if (this.opts.skin === 'qrcode') {
  112. clearInterval(this.timer);
  113. this.timer = null;
  114. }
  115. },
  116. // 科室动态二维码方法
  117. showNurseCode() {
  118. let deptId = this.loginInfo.user && this.loginInfo.user.dept.id;
  119. reqDeptCodes([deptId]).then(res => {
  120. if (res.status == 200) {
  121. this.nurseCodeImg = res["data"][0].base64;
  122. this.refreshQRCodeTime = res["data"][0].refreshQRCodeTime;
  123. clearInterval(this.timer);
  124. this.timer = setInterval(() => {
  125. this.refreshQRCodeTime = Math.max(--this.refreshQRCodeTime, 0);
  126. if (this.refreshQRCodeTime === 0) {
  127. clearInterval(this.timer);
  128. this.showNurseCode();
  129. }
  130. }, 1000);
  131. }
  132. })
  133. },
  134. },
  135. };
  136. </script>
  137. <style lang="scss" scoped>
  138. .seiminModel {
  139. font-size: 36rpx;
  140. color: #000;
  141. line-height: 50rpx;
  142. text-align: center;
  143. &.seiminModel_mask {
  144. background-color: rgba(0, 0, 0, 0.5);
  145. position: fixed;
  146. top: 0;
  147. right: 0;
  148. bottom: 0;
  149. left: 0;
  150. margin: auto;
  151. z-index: 9999;
  152. @include flex(center, center);
  153. .seiminModel_container {
  154. width: 560rpx;
  155. border-radius: 8rpx;
  156. background-color: #fff;
  157. display: flex;
  158. flex-direction: column;
  159. align-content: center;
  160. .seiminModel_header {
  161. height: 100rpx;
  162. @include flex(center, center);
  163. }
  164. .seiminModel_content {
  165. flex: 1;
  166. background-color: #f9fafb;
  167. margin: 0 36rpx 25rpx;
  168. border: 1px solid #e5e9ed;
  169. color: #333;
  170. padding: 76rpx 24rpx;
  171. @include numbersAndLettersNoWrap;
  172. &.qrcode {
  173. padding: 24rpx;
  174. font-size: 32rpx;
  175. color: #999;
  176. .qrcode_operate {
  177. @include flex(space-between, center);
  178. .refreshQRCode {
  179. color: $defaultColor;
  180. }
  181. }
  182. }
  183. .red {
  184. color: $textColorRed;
  185. }
  186. .green {
  187. color: $defaultColor;
  188. }
  189. }
  190. .seiminModel_footer {
  191. border-top: 1px solid #e5e5e5;
  192. height: 100rpx;
  193. color: #666;
  194. @include flex(center, center);
  195. .seiminModel_footer__btn {
  196. height: 100%;
  197. @include flex(center, center);
  198. position: relative;
  199. &::after {
  200. content: "";
  201. height: 86rpx;
  202. position: absolute;
  203. width: 1px;
  204. bottom: 0;
  205. right: 0;
  206. background-color: #dde1e5;
  207. }
  208. }
  209. }
  210. }
  211. }
  212. }
  213. </style>