showDepartmentQrcode.vue 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247
  1. <template>
  2. <view class="showModel" v-show="disjunctor">
  3. <view class="showModel__wrap">
  4. <view class="showModel__header">
  5. 科室二维码
  6. </view>
  7. <view class="showModel__article">
  8. <view class="showModel__content" v-if="userData.user.dutyDeptDTO">
  9. <image :src="qrCode" mode="widthFix" style="width: 100%;"></image>
  10. <view class="page_item_btn" @click="bindDept()"> 切换科室 <text>({{ refreshQRCodeTime }}s)</text> </view>
  11. </view>
  12. <view class="showModel__content" v-else>
  13. <view class="page_item_btn" @click="bindDept()"> 绑定科室 </view>
  14. </view>
  15. </view>
  16. <view class="showModel__footer">
  17. <view class="showModel__know" @click="know" hover-class="seimin-btn-hover">关闭</view>
  18. </view>
  19. </view>
  20. </view>
  21. </template>
  22. <script>
  23. import {
  24. get,
  25. post,
  26. webHandle
  27. } from "../../http/http.js";
  28. export default {
  29. data() {
  30. return {
  31. timer: null,
  32. refreshQRCodeTime: 0, //刷新时间间隔
  33. qrCode: '',//二维码
  34. userData: uni.getStorageSync('userData'),//当前用户
  35. };
  36. },
  37. props: {
  38. // 显示隐藏
  39. disjunctor: {
  40. type: Boolean,
  41. default: false,
  42. },
  43. },
  44. methods: {
  45. // 关闭
  46. know() {
  47. this.$emit("know");
  48. clearInterval(this.timer);
  49. this.timer = null;
  50. },
  51. // 绑定科室
  52. bindDept(){
  53. uni.navigateTo({
  54. url: `../search/search?type=showDepartmentQrcode`,
  55. });
  56. },
  57. // 获取我的二维码
  58. getQrCode(){
  59. uni.showLoading({
  60. title: "加载中",
  61. mask: true,
  62. });
  63. post("/dept/deptCodes/0", [this.userData.user.dutyDeptDTO.id])
  64. .then((result) => {
  65. uni.hideLoading();
  66. if (result.status == 200) {
  67. this.qrCode = result.data[0].base64;
  68. this.refreshQRCodeTime = result.data[0].refreshQRCodeTime;
  69. clearInterval(this.timer);
  70. this.timer = setInterval(() => {
  71. this.refreshQRCodeTime = Math.max(--this.refreshQRCodeTime, 0);
  72. if (this.refreshQRCodeTime === 0) {
  73. clearInterval(this.timer);
  74. this.getQrCode();
  75. }
  76. }, 1000);
  77. } else {
  78. uni.showToast({
  79. icon: "none",
  80. title: result.msg || "接口获取数据失败!",
  81. });
  82. }
  83. })
  84. },
  85. },
  86. mounted() {
  87. this.userData = uni.getStorageSync('userData');
  88. console.log(this.userData.user, 'userData');
  89. // 有责任科室则查询动态二维码
  90. this.userData.user.dutyDeptDTO && this.getQrCode();
  91. }
  92. };
  93. </script>
  94. <style lang="less" scoped>
  95. .showModel {
  96. position: fixed;
  97. left: 0;
  98. right: 0;
  99. top: 0;
  100. bottom: 0;
  101. background-color: rgba(0, 0, 0, 0.2);
  102. z-index: 999999;
  103. .page_item_btn {
  104. height: 88rpx;
  105. background-image: linear-gradient(to right, #72c172, #3bb197);
  106. border-radius: 8rpx;
  107. line-height: 88rpx;
  108. color: #fff;
  109. font-size: 36rpx;
  110. font-weight: 700;
  111. text-align: center;
  112. }
  113. .showModel__wrap {
  114. width: 560rpx;
  115. position: absolute;
  116. left: 50%;
  117. top: 50%;
  118. transform: translate(-50%, -50%);
  119. background-color: #fff;
  120. border-radius: 12rpx;
  121. .showModel__header {
  122. font-size: 36rpx;
  123. color: #000;
  124. height: 84rpx;
  125. display: flex;
  126. justify-content: center;
  127. align-items: center;
  128. }
  129. .showModel__article {
  130. color: #000;
  131. margin: 0 auto 25rpx;
  132. width: 488rpx;
  133. background-color: rgb(249, 250, 251);
  134. border: 2rpx solid rgb(229, 233, 237);
  135. border-radius: 12rpx;
  136. box-sizing: border-box;
  137. display: flex;
  138. flex-direction: column;
  139. justify-content: center;
  140. align-items: center;
  141. &.p0 {
  142. padding: 0;
  143. }
  144. &.p1 {
  145. text-align: left;
  146. }
  147. .showModel__icon {
  148. font-size: 138rpx;
  149. margin-bottom: 32rpx;
  150. &.showModel__icon--success {
  151. color: rgb(52, 179, 73);
  152. }
  153. &.showModel__icon--warn {
  154. color: rgb(245, 165, 35);
  155. }
  156. &.showModel__icon--error {
  157. color: rgb(255, 58, 82);
  158. }
  159. }
  160. .showModel__content {
  161. font-size: 36rpx;
  162. word-break: break-all;
  163. width: 100%;
  164. }
  165. .showModel__info {
  166. font-size: 32rpx;
  167. color: rgb(102, 102, 102);
  168. }
  169. .specialCloseFlag {
  170. width: 90%;
  171. height: 100%;
  172. padding: 16rpx;
  173. }
  174. .radio-wrap {
  175. .radio-item {
  176. margin-top: 16rpx;
  177. /deep/ .uni-radio-input-checked {
  178. background-color: #49b856 !important;
  179. border-color: #49b856 !important;
  180. }
  181. }
  182. }
  183. }
  184. .showModel__footer {
  185. box-sizing: border-box;
  186. height: 100rpx;
  187. border-top: 2rpx solid rgb(229, 233, 237);
  188. display: flex;
  189. align-items: center;
  190. view {
  191. height: 100%;
  192. display: flex;
  193. align-items: center;
  194. justify-content: center;
  195. font-size: 36rpx;
  196. color: rgb(102, 102, 102);
  197. position: relative;
  198. &:nth-of-type(2)::before {
  199. content: "";
  200. position: absolute;
  201. left: 0;
  202. bottom: 0;
  203. width: 2rpx;
  204. height: 87rpx;
  205. background-color: rgb(229, 233, 237);
  206. }
  207. }
  208. .showModel__ok {
  209. flex: 1;
  210. color: rgb(73, 184, 86);
  211. }
  212. .showModel__cancel {
  213. flex: 1;
  214. }
  215. .showModel__know {
  216. flex: 1;
  217. color: rgb(73, 184, 86);
  218. }
  219. }
  220. }
  221. }
  222. </style>