Browse Source

科室动态二维码

seimin 1 year ago
parent
commit
122c34b26e

+ 1 - 1
components/bigScreen/bigScreen.vue

@@ -346,7 +346,7 @@
346 346
                 uni.hideLoading();
347 347
                 uni.showToast({
348 348
                   icon: "none",
349
-                  title: result.msg || "接口获取数据失败!",
349
+                  title: result.info || "接口获取数据失败!",
350 350
                 });
351 351
               }
352 352
             })

+ 246 - 0
components/showDepartmentQrcode/showDepartmentQrcode.vue

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

+ 1 - 1
components/smallScreen/smallScreen.vue

@@ -380,7 +380,7 @@
380 380
               uni.hideLoading();
381 381
               uni.showToast({
382 382
                 icon: "none",
383
-                title: result.msg || "接口获取数据失败!",
383
+                title: result.info || "接口获取数据失败!",
384 384
               });
385 385
             }
386 386
           });

+ 1 - 1
main.js

@@ -7,7 +7,7 @@ import './mixins/mixin'
7 7
 // new VConsole();
8 8
 // import eruda from 'eruda';
9 9
 // eruda.init();
10
-console.info('v2.4.39');
10
+console.info('v2.4.40');
11 11
 Vue.prototype.wx = wx //声明扫码
12 12
 Vue.prototype.audios = [] //待播放的语音集合
13 13
 // #endif

+ 1 - 1
pages/check_blood/check_blood.vue

@@ -238,7 +238,7 @@
238 238
             uni.hideLoading();
239 239
             uni.showToast({
240 240
               icon: "none",
241
-              title: result.msg || "接口获取数据失败!",
241
+              title: result.info || "接口获取数据失败!",
242 242
             });
243 243
           }
244 244
         });

+ 1 - 1
pages/otherCompleteOrder/otherCompleteOrder.vue

@@ -244,7 +244,7 @@
244 244
             uni.hideLoading();
245 245
             uni.showToast({
246 246
               icon: "none",
247
-              title: result.msg || "接口获取数据失败!",
247
+              title: result.info || "接口获取数据失败!",
248 248
             });
249 249
           }
250 250
         });

+ 1 - 1
pages/patientInformationList/patientInformationList.vue

@@ -362,7 +362,7 @@
362 362
               uni.hideLoading();
363 363
               uni.showToast({
364 364
                 icon: "none",
365
-                title: result.msg || "接口获取数据失败!",
365
+                title: result.info || "接口获取数据失败!",
366 366
               });
367 367
             }
368 368
           });

+ 2 - 2
pages/receipt_infopage/receipt_infopage.vue

@@ -947,7 +947,7 @@
947 947
         } else {
948 948
           uni.showToast({
949 949
             icon: "none",
950
-            title: result.msg || "接口获取数据失败!",
950
+            title: result.info || "接口获取数据失败!",
951 951
           });
952 952
         }
953 953
       },
@@ -1203,7 +1203,7 @@
1203 1203
             } else {
1204 1204
               uni.hideLoading();
1205 1205
               uni.navigateTo({
1206
-                url: `../result_error/result_error?qrcode=${ress1}&msg=接口获取数据失败!`,
1206
+                url: `../result_error/result_error?qrcode=${ress1}&msg=${result.info || '接口获取数据失败!'}`,
1207 1207
               });
1208 1208
             }
1209 1209
           });

+ 61 - 4
pages/receiptpage/receiptpage.vue

@@ -304,6 +304,8 @@
304 304
       @ok="ok" @cancel="cancel" @know="know" :operate="models.operate"></showModel>
305 305
     <!-- 我的二维码-弹窗 -->
306 306
     <showMyQrcode v-if="showMyQrcodeModel.disjunctor" :disjunctor="showMyQrcodeModel.disjunctor" @know="closeMyQrcodeModel"></showMyQrcode>
307
+    <!-- 科室二维码-弹窗 -->
308
+    <showDepartmentQrcode v-if="showDepartmentQrcodeModel.disjunctor" :disjunctor="showDepartmentQrcodeModel.disjunctor" @know="closeDepartmentQrcodeModel"></showDepartmentQrcode>
307 309
     <!-- 手动查询标本弹窗 -->
308 310
     <handViewSpecimen v-if="speModels.disjunctor" :title="speModels.title" :disjunctor="speModels.disjunctor"
309 311
       @ok="speOk" @cancel="speCancel">
@@ -366,6 +368,10 @@
366 368
         showMyQrcodeModel: {
367 369
           disjunctor: false,
368 370
         },
371
+        // 弹窗model
372
+        showDepartmentQrcodeModel: {
373
+          disjunctor: false,
374
+        },
369 375
         SMFlag: true,
370 376
         // 手动查询标本弹窗model
371 377
         speModels: {
@@ -651,7 +657,7 @@
651 657
             } else {
652 658
               uni.hideLoading();
653 659
               uni.navigateTo({
654
-                url: `../result_error/result_error?qrcode=${ress1}&msg=接口获取数据失败!`,
660
+                url: `../result_error/result_error?qrcode=${ress1}&msg=${result.info || '接口获取数据失败!'}`,
655 661
               });
656 662
             }
657 663
           });
@@ -856,6 +862,10 @@
856 862
             this.content.push({
857 863
               text: "我的二维码",
858 864
             });
865
+          } else if (item.link === "departmentQrcode") {
866
+            this.content.push({
867
+              text: "科室二维码",
868
+            });
859 869
           } else if (item.link === "formManagementWechat") {
860 870
             this.content.push({
861 871
               text: "查看表单",
@@ -1239,7 +1249,7 @@
1239 1249
         } else {
1240 1250
           uni.showToast({
1241 1251
             icon: "none",
1242
-            title: result.msg || "接口获取数据失败!",
1252
+            title: result.info || "接口获取数据失败!",
1243 1253
           });
1244 1254
         }
1245 1255
       },
@@ -1327,6 +1337,8 @@
1327 1337
           this.handleTakeMedicine()
1328 1338
         } else if (e.item.text === "我的二维码") {
1329 1339
           this.myQrcodeHandler()
1340
+        } else if (e.item.text === "科室二维码") {
1341
+          this.departmentQrcodeHandler()
1330 1342
         } else if (e.item.text === "查看表单") {
1331 1343
           uni.navigateTo({
1332 1344
             url: "../formManagementWechat/formManagementWechat",
@@ -1346,6 +1358,15 @@
1346 1358
       closeMyQrcodeModel(){
1347 1359
         this.showMyQrcodeModel.disjunctor = false;
1348 1360
       },
1361
+      // 科室二维码
1362
+      departmentQrcodeHandler(){
1363
+        this.showDepartmentQrcodeModel = {
1364
+          disjunctor: true,
1365
+        };
1366
+      },
1367
+      closeDepartmentQrcodeModel(){
1368
+        this.showDepartmentQrcodeModel.disjunctor = false;
1369
+      },
1349 1370
       // 摆药取药
1350 1371
       handleTakeMedicine() {
1351 1372
         if (!this.SMFlag) {
@@ -1374,7 +1395,7 @@
1374 1395
                 uni.hideLoading();
1375 1396
                 uni.showToast({
1376 1397
                   icon: "none",
1377
-                  title: result.msg || "接口获取数据失败!",
1398
+                  title: result.info || "接口获取数据失败!",
1378 1399
                 });
1379 1400
               }
1380 1401
             })
@@ -1623,8 +1644,39 @@
1623 1644
       stop(e) {
1624 1645
         e.preventDefault();
1625 1646
       },
1647
+      // 更新用户所在科室
1648
+      updateUser(dept) {
1649
+        post("/user/data/bindDutyDept", {dutyDept: dept.id}).then((res) => {
1650
+          if (res.status == 200) {
1651
+            this.getCurrentUserNow();
1652
+          }else{
1653
+            uni.showToast({
1654
+              icon: "none",
1655
+              title: res.msg || "接口获取数据失败!",
1656
+            });
1657
+          }
1658
+        })
1659
+      },
1660
+      // 重新获取用户信息
1661
+      getCurrentUserNow() {
1662
+        get("/user/data/getCurrentUser").then((res) => {
1663
+          if (res.status == 200) {
1664
+            let userData = uni.getStorageSync('userData');
1665
+            userData.user = res.data;
1666
+            uni.setStorageSync('userData', userData);
1667
+            // 显示科室二维码
1668
+            this.departmentQrcodeHandler()
1669
+          }else{
1670
+            uni.showToast({
1671
+              icon: "none",
1672
+              title: res.msg || "接口获取数据失败!",
1673
+            });
1674
+          }
1675
+        })
1676
+      },
1626 1677
     },
1627
-    onLoad() {
1678
+    onLoad(options) {
1679
+      console.log(options, 'options');
1628 1680
       // 获取菜单权限
1629 1681
       this.getMenu();
1630 1682
       post("/auth/getUserWorkDept", {}).then((ress) => {
@@ -1662,6 +1714,11 @@
1662 1714
       // #endif
1663 1715
       this.selectedLabelSlots = "执行中";
1664 1716
       this.initList();
1717
+      
1718
+      // 科室二维码切换科室回显
1719
+      if (options.showDepartmentQrcodeId && options.showDepartmentQrcodeDept) {
1720
+        this.updateUser({id: options.showDepartmentQrcodeId, dept: options.showDepartmentQrcodeDept})
1721
+      }
1665 1722
       // #ifdef APP-PLUS
1666 1723
       webHandle("no", "app");
1667 1724
       // #endif

+ 1 - 1
pages/scanning_B/scanning_B.vue

@@ -178,7 +178,7 @@
178 178
       //             uni.hideLoading();
179 179
       //             uni.showToast({
180 180
       //               icon: "none",
181
-      //               title: result.msg || "接口获取数据失败!",
181
+      //               title: result.info || "接口获取数据失败!",
182 182
       //             });
183 183
       //           }
184 184
       //         });

+ 1 - 1
pages/scanning_Result/scanning_Result.vue

@@ -459,7 +459,7 @@
459 459
             uni.hideLoading();
460 460
             uni.showToast({
461 461
               icon: "none",
462
-              title: result.msg || "接口获取数据失败!",
462
+              title: result.info || "接口获取数据失败!",
463 463
             });
464 464
           }
465 465
         });

+ 1 - 1
pages/scanning_all/scanning_all.vue

@@ -545,7 +545,7 @@
545 545
                       uni.hideLoading();
546 546
                       uni.showToast({
547 547
                         icon: "none",
548
-                        title: result.msg || "接口获取数据失败!",
548
+                        title: result.info || "接口获取数据失败!",
549 549
                       });
550 550
                     }
551 551
                   });

+ 1 - 1
pages/scanning_blood_process/scanning_blood_process.vue

@@ -230,7 +230,7 @@
230 230
             uni.hideLoading();
231 231
             uni.showToast({
232 232
               icon: "none",
233
-              title: result.msg || "接口获取数据失败!",
233
+              title: result.info || "接口获取数据失败!",
234 234
             });
235 235
           }
236 236
         });

+ 1 - 1
pages/scanning_code/scanning_code.vue

@@ -977,7 +977,7 @@
977 977
             uni.hideLoading();
978 978
             uni.showToast({
979 979
               icon: "none",
980
-              title: result.msg || "接口获取数据失败!",
980
+              title: result.info || "接口获取数据失败!",
981 981
             });
982 982
           }
983 983
         });

+ 1 - 1
pages/scanning_djEnd/scanning_djEnd.vue

@@ -713,7 +713,7 @@
713 713
             uni.hideLoading();
714 714
             uni.showToast({
715 715
               icon: "none",
716
-              title: result.msg || "接口获取数据失败!",
716
+              title: result.info || "接口获取数据失败!",
717 717
             });
718 718
           }
719 719
         });

+ 1 - 1
pages/scanning_djInfo/scanning_djInfo.vue

@@ -409,7 +409,7 @@
409 409
             uni.hideLoading();
410 410
             uni.showToast({
411 411
               icon: "none",
412
-              title: result.msg || "接口获取数据失败!",
412
+              title: result.info || "接口获取数据失败!",
413 413
             });
414 414
           }
415 415
         });

+ 1 - 1
pages/scanning_drug/scanning_drug.vue

@@ -228,7 +228,7 @@
228 228
             uni.hideLoading();
229 229
             uni.showToast({
230 230
               icon: "none",
231
-              title: result.msg || "接口获取数据失败!",
231
+              title: result.info || "接口获取数据失败!",
232 232
             });
233 233
           }
234 234
         });

+ 2 - 2
pages/scanning_ins/scanning_ins.vue

@@ -611,7 +611,7 @@
611 611
               uni.hideLoading();
612 612
               uni.showToast({
613 613
                 icon: "none",
614
-                title: result.msg || "接口获取数据失败!",
614
+                title: result.info || "接口获取数据失败!",
615 615
               });
616 616
             }
617 617
           });
@@ -781,7 +781,7 @@
781 781
                   uni.hideLoading();
782 782
                   uni.showToast({
783 783
                     icon: "none",
784
-                    title: result.msg || "接口获取数据失败!",
784
+                    title: result.info || "接口获取数据失败!",
785 785
                   });
786 786
                 }
787 787
               });

+ 10 - 3
pages/search/search.vue

@@ -121,6 +121,8 @@
121 121
         this.sysDeptType = -1;
122 122
       }  else if (this.type == "pharmacy") { //药房切换科室
123 123
         this.sysDeptType = 386;
124
+      }  else if (this.type == "showDepartmentQrcode") { //科室二维码绑定
125
+        this.sysDeptType = -1;
124 126
       }  else if (this.type == "bloodSelect") { //选择血制品送达科室
125 127
         this.bloodDTO = JSON.parse(options.bloodDTO);
126 128
       } else {
@@ -170,7 +172,7 @@
170 172
           this.inputChange(event);
171 173
         }, 500)
172 174
       },
173
-      //获取系统设置的科室类型baba sysDeptType
175
+      //获取系统设置的科室类型 sysDeptType
174 176
       getSysDeptType() {
175 177
         let postData = {
176 178
           "idx": 0,
@@ -217,7 +219,7 @@
217 219
           }
218 220
         }
219 221
         //不是送回病房
220
-        if (this.type != "sendBack" && this.type != "sendBackPatientList" && this.type != "settingCode" && this.type != "bloodSelect") {
222
+        if (this.type != "sendBack" && this.type != "sendBackPatientList" && this.type != "settingCode" && this.type != "bloodSelect" && this.type != "showDepartmentQrcode") {
221 223
           if (this.sysDeptType === 0) {
222 224
             return;
223 225
           } else {
@@ -352,7 +354,7 @@
352 354
         let arr = this.deptList.filter((item) => data.qrId ? (item.qrId === data.qrId) : (item.dept === keyword));
353 355
         if (arr.length) {
354 356
           let msg = "";
355
-          if (this.type == "patientInformationList" || this.type == "inspectList" || this.type == "pharmacy") {
357
+          if (this.type == "patientInformationList" || this.type == "inspectList" || this.type == "pharmacy" || this.type == "showDepartmentQrcode") {
356 358
             msg = "切换科室成功";
357 359
             uni.showToast({
358 360
               title: msg,
@@ -387,6 +389,11 @@
387 389
             uni.navigateTo({
388 390
               url: `../pharmacy/pharmacy?id=${arr[0].id}&dept=${arr[0].dept}`,
389 391
             });
392
+          } else if (this.type == "showDepartmentQrcode") {
393
+            //科室二维码进入
394
+            uni.navigateTo({
395
+              url: `../receiptpage/receiptpage?showDepartmentQrcodeId=${arr[0].id}&showDepartmentQrcodeDept=${arr[0].dept}`,
396
+            });
390 397
           } else if (this.type == "setDept") {
391 398
             //上班添加科室进入
392 399
             let obj = uni.getStorageSync("setDepts");

+ 1 - 1
pages/signIn_blood/signIn_blood.vue

@@ -204,7 +204,7 @@
204 204
             uni.hideLoading();
205 205
             uni.showToast({
206 206
               icon: "none",
207
-              title: result.msg || "接口获取数据失败!",
207
+              title: result.info || "接口获取数据失败!",
208 208
             });
209 209
           }
210 210
         });