seimin 5 kuukautta sitten
vanhempi
commit
1479a52a04

+ 148 - 35
pages/checkAfterScanning/checkAfterScanning.vue

@@ -46,6 +46,8 @@
46 46
   export default {
47 47
     data() {
48 48
       return {
49
+        handoverId: undefined,
50
+        handoverDeptId: undefined,
49 51
         info: {},
50 52
         wcFlag: false,
51 53
         queryObj: {}, //路由传递过来的数据
@@ -84,43 +86,152 @@
84 86
       goBack() {
85 87
         uni.navigateBack();
86 88
       },
89
+      // 业务页面控制-标本-收取时需扫描二维码
90
+      beforeScanning(fn) {
91
+        this.handoverId = undefined;//扫动态码或静态码,后端会返回交接人,核对完成接口传过去
92
+        this.handoverDeptId = undefined;//扫动态码或静态码,后端会返回科室,核对完成接口传过去
93
+        // 判断开关
94
+        const userData = uni.getStorageSync("userData");
95
+        console.log('userData', userData);
96
+        uni.showLoading({
97
+          title: "加载中",
98
+          mask: true,
99
+        });
100
+        // 查询标本配送业务
101
+        post("/simple/data/fetchDataList/taskType",{
102
+            "idx": 0,
103
+            "sum": 10,
104
+            "taskType": {
105
+                "simpleQuery": true,
106
+                "hosId": {
107
+                    "id": userData.user.currentHospital.id
108
+                },
109
+                "associationType": {
110
+                    "key": "association_types",
111
+                    "value": "specimen"
112
+                }
113
+            }
114
+        }).then((res) => {
115
+          if (res.status == 200) {
116
+            let taskTypeDTO = res.list[0];
117
+        		if(taskTypeDTO){
118
+              // 查询业务页面控制-标本
119
+              post("/simple/data/fetchDataList/taskTypeConfig",{
120
+                  "idx": 0,
121
+                  "sum": 10,
122
+                  "taskTypeConfig": {
123
+                    taskTypeDTO,
124
+                  }
125
+              }).then((res) => {
126
+                if (res.status == 200) {
127
+                  let data = res.list[0];
128
+              		if(data){
129
+                    // 收取时需扫描二维码
130
+                    if(data.arriveScanCode == 1){
131
+                      // 扫描科室二维码
132
+                      uni.hideLoading();
133
+                      SM().then((content) => {
134
+                        let postData = {
135
+                          code: content,
136
+                          type: 'specimen',
137
+                          hosId: userData.user.currentHospital.id,
138
+                          orderId: +this.queryObj.id,
139
+                        };
140
+                        console.log(postData)
141
+                        uni.showLoading({
142
+                          title: "加载中",
143
+                          mask: true,
144
+                        });
145
+                        post("/workerOrder/arriveScanCheck", postData).then((res) => {
146
+                          uni.hideLoading();
147
+                          if (res.state == 200) {
148
+                            this.handoverId = res.handover;//扫动态码或静态码,后端会返回交接人,核对完成接口传过去
149
+                            this.handoverDeptId = res.handoverDeptId;//扫动态码或静态码,后端会返回科室,核对完成接口传过去
150
+                            fn();
151
+                          } else {
152
+                            uni.showToast({
153
+                              icon: "none",
154
+                              title: res.msg || "接口获取数据失败!",
155
+                            });
156
+                          }
157
+                        })
158
+                      }).catch(err => {
159
+                        
160
+                      });
161
+                    }else{
162
+                      uni.hideLoading();
163
+                      fn();
164
+                    }
165
+                  }else{
166
+                    uni.hideLoading();
167
+                    fn();
168
+                  }
169
+                } else {
170
+                  uni.hideLoading();
171
+                  uni.showToast({
172
+                    icon: "none",
173
+                    title: res.msg || "接口获取数据失败!",
174
+                  });
175
+                }
176
+              });
177
+            }else{
178
+              uni.hideLoading();
179
+              uni.showToast({
180
+                icon: "none",
181
+                title: "未查询到标本配送业务!",
182
+              });
183
+            }
184
+          } else {
185
+            uni.hideLoading();
186
+            uni.showToast({
187
+              icon: "none",
188
+              title: res.msg || "接口获取数据失败!",
189
+            });
190
+          }
191
+        });
192
+        
193
+        
194
+        
195
+      },
87 196
       // 完成核对
88 197
       Scanning_complete() {
89
-        if (
90
-          this.queryObj.type1 == "plan-spe-ddd-2" ||
91
-          this.queryObj.type1 == "spe-ddd-2"
92
-        ) {
93
-          this.wcFlag = true;
94
-          this.models = {
95
-            disjunctor: true,
96
-            title: "提示",
97
-            content: "是否确定标本已核对完成?",
98
-            icon: "warn",
99
-            operate: {
100
-              ok: "确定",
101
-              cancel: "取消",
102
-            },
103
-          };
104
-        } else if (
105
-          this.queryObj.type1 == "plan-spe-dsd-2" ||
106
-          this.queryObj.type1 == "plan-spe-dsd-3" ||
107
-          this.queryObj.type1 == "spe-dsd-2" ||
108
-          this.queryObj.type1 == "spe-dsd-3"
109
-        ) {
110
-          this.wcFlag = false;
111
-          this.models = {
112
-            disjunctor: true,
113
-            title: "提示",
114
-            content: "是否确定标本已核对完成?",
115
-            icon: "warn",
116
-            operate: {
117
-              ok: "确定",
118
-              cancel: "取消",
119
-            },
120
-          };
121
-        } else {
122
-          this.gotoOver();
123
-        }
198
+        this.beforeScanning(() => {
199
+          if (
200
+            this.queryObj.type1 == "plan-spe-ddd-2" ||
201
+            this.queryObj.type1 == "spe-ddd-2"
202
+          ) {
203
+            this.wcFlag = true;
204
+            this.models = {
205
+              disjunctor: true,
206
+              title: "提示",
207
+              content: "是否确定标本已核对完成?",
208
+              icon: "warn",
209
+              operate: {
210
+                ok: "确定",
211
+                cancel: "取消",
212
+              },
213
+            };
214
+          } else if (
215
+            this.queryObj.type1 == "plan-spe-dsd-2" ||
216
+            this.queryObj.type1 == "plan-spe-dsd-3" ||
217
+            this.queryObj.type1 == "spe-dsd-2" ||
218
+            this.queryObj.type1 == "spe-dsd-3"
219
+          ) {
220
+            this.wcFlag = false;
221
+            this.models = {
222
+              disjunctor: true,
223
+              title: "提示",
224
+              content: "是否确定标本已核对完成?",
225
+              icon: "warn",
226
+              operate: {
227
+                ok: "确定",
228
+                cancel: "取消",
229
+              },
230
+            };
231
+          } else {
232
+            this.gotoOver();
233
+          }
234
+        });
124 235
       },
125 236
       // 跳转完成工单页面
126 237
       gotoOver() {
@@ -261,6 +372,8 @@
261 372
             }
262 373
           });
263 374
         } else {
375
+          data.handover = this.handoverId || undefined;
376
+          data.handoverDeptId = this.handoverDeptId || undefined;
264 377
           post("/workerOrder/finishSpes", data).then((res) => {
265 378
             // uni.hideLoading()
266 379
             if (res.status == 200) {

+ 8 - 7
pages/scanning_B/scanning_B.vue

@@ -99,7 +99,7 @@
99 99
         let postData = {
100 100
           ids,
101 101
         };
102
-        if (this.type === 'orderSign') {
102
+        if (this.type === 'buildAndOrderSign' || this.type === 'specimenAssignAndSign') {
103 103
           postData.specimenOrderSign = data.specimenSet.map(v => v.id); //破坏性,必须扫标本
104 104
         }
105 105
         if (accountObj) {
@@ -349,12 +349,13 @@
349 349
           title: "加载中",
350 350
           mask: true,
351 351
         });
352
-        if (this.backStatus = 'back') {
353
-          // 退回
354
-          this.backHandler(this.backSpecimen, this.res.data.gdid, data);
355
-        } else {
356
-          this.nextDeptOrder_s(this.res.workOrder, data);
357
-        }
352
+        // if (this.backStatus = 'back') {
353
+        //   // 退回
354
+        //   this.backHandler(this.backSpecimen, this.res.data.gdid, data);
355
+        // } else {
356
+        //   this.nextDeptOrder_s(this.res.workOrder, data);
357
+        // }
358
+        this.nextDeptOrder_s(this.res.workOrder, data);
358 359
       },
359 360
       // 填写交接人工号-取消
360 361
       hosCancel() {

+ 113 - 8
pages/scanning_Result/scanning_Result.vue

@@ -43,7 +43,7 @@
43 43
       <view>
44 44
         {{ infoDATA.sickRoom ? infoDATA.sickRoom.dept : "" }}
45 45
         <text style="width: 4em;text-align: center;margin-left: 1em;margin-right: 1em;" class="newicon newicon-arrow-right-full"></text>
46
-        {{ infoDATA.checkDept ? infoDATA.checkDept.dept : "" }}
46
+        <text :class="{ red: isEndDeptRedShow }">{{ infoDATA.checkDept ? infoDATA.checkDept.dept : "" }}</text>
47 47
       </view>
48 48
       <view>患者姓名 : {{ infoDATA.patientName}}({{infoDATA.bedNum}})</view>
49 49
       <view>住院号 : {{ infoDATA.residenceNo || '-' }}</view>
@@ -59,7 +59,7 @@
59 59
       <view>
60 60
         {{ infoDATA.sickRoom ? infoDATA.sickRoom.dept : "" }}
61 61
         <text style="width: 4em;text-align: center;margin-left: 1em;margin-right: 1em;" class="newicon newicon-arrow-right-full"></text>
62
-        {{ infoDATA.checkDept ? infoDATA.checkDept.dept : "" }}
62
+        <text :class="{ red: isEndDeptRedShow }">{{ infoDATA.checkDept ? infoDATA.checkDept.dept : "" }}</text>
63 63
       </view>
64 64
       <view>患者姓名 : {{ infoDATA.patientName}}({{infoDATA.bedNum}})</view>
65 65
       <view>住院号 : {{ infoDATA.residenceNo || '-' }}</view>
@@ -284,6 +284,9 @@
284 284
 		},
285 285
     data() {
286 286
       return {
287
+        // 终点科室标红
288
+        isEndDeptRedShow: false,
289
+        isEndDeptRed: false,
287 290
 				// 调研二维码
288 291
 				isQuestionModel:false,
289 292
         DRUGSBAG_TYPE,
@@ -422,11 +425,31 @@
422 425
                 if (ress.status == 200 || ress.status == 11111) {
423 426
                   //标本和标本轮巡工单,扫描标本后会自动调用摄像头,继续扫描,直到status不是200
424 427
                   if ((this.type == "specimenPlan" || this.type == "specimen") && ress.status != 11111) {
425
-                    setTimeout(()=>{
426
-                      if (type === 'scan') {
427
-                        this.Scanning_again();
428
+                    this.getPageConfigSpecimen((flag, type, ress) => {
429
+                      if(flag){
430
+                        setTimeout(()=>{
431
+                          if (type === 'scan') {
432
+                            this.Scanning_again();
433
+                          }
434
+                        },500)
428 435
                       }
429
-                    },500)
436
+                      if(ress){
437
+                        this.infoDATA = ress.data;
438
+                        this.speNum = ress.specimenCount;
439
+                        uni.redirectTo({
440
+                          url: `../scanning_Result/scanning_Result?type=${
441
+                          this.queryObj.type
442
+                        }&type1=${
443
+                          this.queryObj.type1
444
+                        }&infoData=${encodeURIComponent(
445
+                          JSON.stringify(ress.data)
446
+                        )}&status=${ress.status}&msg=${ress.msg}&deptCode=${
447
+                          this.queryObj.deptCode
448
+                        }&dept=${this.queryObj.dept}&id=${this.dataId}&model=${encodeURIComponent(JSON.stringify(ress))}&speNum=${this.speNum}&scanOrHand=${type}&isEndDeptRed=${this.isEndDeptRed}`,
449
+                        });
450
+                      }
451
+                    }, type, ress.data, ress);
452
+                    return;
430 453
                   }
431 454
                   if (this.type == "specimenPlan" || this.type == "specimen") {
432 455
                     this.infoDATA = ress.data;
@@ -907,15 +930,97 @@
907 930
 				    });
908 931
 				  }
909 932
 				});
910
-			}
933
+			},
934
+      // 页面控制-标本
935
+      getPageConfigSpecimen(fn, type, specimenDTO, ress){
936
+        const userData = uni.getStorageSync("userData");
937
+        console.log('userData', userData);
938
+        console.log('specimenDTO', specimenDTO);
939
+        uni.showLoading({
940
+          title: "加载中",
941
+          mask: true,
942
+        });
943
+        // 查询标本配送业务
944
+        post("/simple/data/fetchDataList/taskType",{
945
+            "idx": 0,
946
+            "sum": 10,
947
+            "taskType": {
948
+                "simpleQuery": true,
949
+                "hosId": {
950
+                    "id": userData.user.currentHospital.id
951
+                },
952
+                "associationType": {
953
+                    "key": "association_types",
954
+                    "value": "specimen"
955
+                }
956
+            }
957
+        }).then((res) => {
958
+          if (res.status == 200) {
959
+            let taskTypeDTO = res.list[0];
960
+        		if(taskTypeDTO){
961
+              // 查询业务页面控制-标本
962
+              post("/simple/data/fetchDataList/taskTypeConfig",{
963
+                  "idx": 0,
964
+                  "sum": 10,
965
+                  "taskTypeConfig": {
966
+                    taskTypeDTO,
967
+                  }
968
+              }).then((res) => {
969
+                uni.hideLoading();
970
+                if (res.status == 200) {
971
+                  let data = res.list[0];
972
+              		if(data){
973
+                    let deptNotAlertList = data.deptNotAlertList || [];
974
+                    deptNotAlertList = deptNotAlertList.map(v => v.id);
975
+                    if(deptNotAlertList.includes(specimenDTO.checkDept.id)){
976
+                      this.isEndDeptRed = true;
977
+                      console.log('红色')
978
+                      fn(false, type, ress);
979
+                    }else{
980
+                      this.isEndDeptRed = false;
981
+                      fn(true, type, ress);
982
+                    }
983
+                    console.log('this.isEndDeptRed', this.isEndDeptRed);
984
+                  }else{
985
+                    this.isEndDeptRed = false;
986
+                    fn(true, type, ress);
987
+                  }
988
+                } else {
989
+                  uni.showToast({
990
+                    icon: "none",
991
+                    title: res.msg || "接口获取数据失败!",
992
+                  });
993
+                }
994
+              });
995
+            }else{
996
+              uni.hideLoading();
997
+              uni.showToast({
998
+                icon: "none",
999
+                title: "未查询到标本配送业务!",
1000
+              });
1001
+            }
1002
+          } else {
1003
+            uni.hideLoading();
1004
+            uni.showToast({
1005
+              icon: "none",
1006
+              title: res.msg || "接口获取数据失败!",
1007
+            });
1008
+          }
1009
+        });
1010
+      },
911 1011
     },
912 1012
     onShow() {
913 1013
       this.SMFlag = true;
914 1014
       this.gotoFlag = true;
915 1015
     },
916 1016
     onLoad(options) {
1017
+      this.isEndDeptRedShow = options.isEndDeptRed === 'true';
917 1018
       if (options.status == 200&&options.scanOrHand === 'hand'&&(options.type === "specimen"||options.type === "specimenPlan")) {
918
-        this.hand_again();
1019
+        this.getPageConfigSpecimen((flag) => {
1020
+          if(flag){
1021
+            this.hand_again();
1022
+          }
1023
+        });
919 1024
       }
920 1025
 			console.log(options , "options");
921 1026
       this.queryObj = options;

+ 109 - 6
pages/scanning_code/scanning_code.vue

@@ -385,6 +385,8 @@
385 385
 		},
386 386
     data() {
387 387
       return {
388
+        // 终点科室标红
389
+        isEndDeptRed: false,
388 390
 				// 调研二维码
389 391
 				isQuestionModel:false,
390 392
         speNumChange: 0,
@@ -893,11 +895,35 @@
893 895
                   //标本和标本轮巡工单,扫描标本后会自动调用摄像头,继续扫描,直到status不是200
894 896
                   if ((this.infoDATA.taskType.associationType.value == 'specimen' || this.infoDATA.taskType
895 897
                     .associationType.value == 'specimenPlan') && ress.status != 11111) {
896
-                    if (type === 'scan') {
897
-                      setTimeout(() => {
898
-                        this.Scanning_again(this.dataId);
899
-                      }, 500)
900
-                    }
898
+                    uni.hideLoading();
899
+                    this.getPageConfigSpecimen((flag, type, ress) => {
900
+                      if(flag){
901
+                        if (type === 'scan') {
902
+                          setTimeout(() => {
903
+                            this.Scanning_again(this.dataId);
904
+                          }, 500)
905
+                        }
906
+                      }
907
+
908
+                      uni.navigateTo({
909
+                        url: `../scanning_Result/scanning_Result?type=${
910
+                        this.queryObj.type
911
+                      }&type1=${
912
+                        this.queryObj.type1
913
+                      }&infoData=${encodeURIComponent(
914
+                        JSON.stringify(ress.data)
915
+                      )}&status=${ress.status}&msg=${ress.msg}&deptCode=${
916
+                        this.queryObj.deptCode
917
+                      }&dept=${
918
+                        this.queryObj.dept
919
+                      }&taskTypeId=${
920
+                        this.infoDATA.taskType.id
921
+                      }&deptId=${this.deptId}&id=${this.dataId}&model=${encodeURIComponent(
922
+                        JSON.stringify(ress)
923
+                      )}&speNum=${ress.specimenCount}&scanOrHand=${type}&isEndDeptRed=${this.isEndDeptRed}`,
924
+                      });
925
+                    }, type, ress.data, ress);
926
+                    return;
901 927
                   }
902 928
                   if (
903 929
                     this.infoDATA.taskType.associationType.value == "drugsBag"
@@ -1277,7 +1303,84 @@
1277 1303
 				    });
1278 1304
 				  }
1279 1305
 				});
1280
-			}
1306
+			},
1307
+      // 页面控制-标本
1308
+      getPageConfigSpecimen(fn, type, specimenDTO, ress){
1309
+        const userData = uni.getStorageSync("userData");
1310
+        console.log('userData', userData);
1311
+        console.log('specimenDTO', specimenDTO);
1312
+        uni.showLoading({
1313
+          title: "加载中",
1314
+          mask: true,
1315
+        });
1316
+        // 查询标本配送业务
1317
+        post("/simple/data/fetchDataList/taskType",{
1318
+            "idx": 0,
1319
+            "sum": 10,
1320
+            "taskType": {
1321
+                "simpleQuery": true,
1322
+                "hosId": {
1323
+                    "id": userData.user.currentHospital.id
1324
+                },
1325
+                "associationType": {
1326
+                    "key": "association_types",
1327
+                    "value": "specimen"
1328
+                }
1329
+            }
1330
+        }).then((res) => {
1331
+          if (res.status == 200) {
1332
+            let taskTypeDTO = res.list[0];
1333
+        		if(taskTypeDTO){
1334
+              // 查询业务页面控制-标本
1335
+              post("/simple/data/fetchDataList/taskTypeConfig",{
1336
+                  "idx": 0,
1337
+                  "sum": 10,
1338
+                  "taskTypeConfig": {
1339
+                    taskTypeDTO,
1340
+                  }
1341
+              }).then((res) => {
1342
+                uni.hideLoading();
1343
+                if (res.status == 200) {
1344
+                  let data = res.list[0];
1345
+              		if(data){
1346
+                    let deptNotAlertList = data.deptNotAlertList || [];
1347
+                    deptNotAlertList = deptNotAlertList.map(v => v.id);
1348
+                    if(deptNotAlertList.includes(specimenDTO.checkDept.id)){
1349
+                      this.isEndDeptRed = true;
1350
+                      console.log('红色')
1351
+                      fn(false, type, ress);
1352
+                    }else{
1353
+                      this.isEndDeptRed = false;
1354
+                      fn(true, type, ress);
1355
+                    }
1356
+                    console.log('this.isEndDeptRed', this.isEndDeptRed);
1357
+                  }else{
1358
+                    this.isEndDeptRed = false;
1359
+                    fn(true, type, ress);
1360
+                  }
1361
+                } else {
1362
+                  uni.showToast({
1363
+                    icon: "none",
1364
+                    title: res.msg || "接口获取数据失败!",
1365
+                  });
1366
+                }
1367
+              });
1368
+            }else{
1369
+              uni.hideLoading();
1370
+              uni.showToast({
1371
+                icon: "none",
1372
+                title: "未查询到标本配送业务!",
1373
+              });
1374
+            }
1375
+          } else {
1376
+            uni.hideLoading();
1377
+            uni.showToast({
1378
+              icon: "none",
1379
+              title: res.msg || "接口获取数据失败!",
1380
+            });
1381
+          }
1382
+        });
1383
+      },
1281 1384
     },
1282 1385
     onShow() {
1283 1386
       this.SMFlag = true;

+ 110 - 6
pages/scanning_djEnd/scanning_djEnd.vue

@@ -231,6 +231,8 @@
231 231
 		},
232 232
     data() {
233 233
       return {
234
+        // 终点科室标红
235
+        isEndDeptRed: false,
234 236
 				// 调研二维码
235 237
 				isQuestionModel:false,
236 238
 				questionId:null,
@@ -680,11 +682,36 @@
680 682
               if (ress.status == 200 || ress.status == 11111) {
681 683
                 //标本和标本轮巡工单,扫描标本后会自动调用摄像头,继续扫描,直到status不是200
682 684
                 if ((this.type == "specimenPlan" || this.type == "specimen") && ress.status != 11111) {
683
-                  if (type === 'scan') {
684
-                    setTimeout(() => {
685
-                      this.Scanning_again();
686
-                    }, 500)
687
-                  }
685
+                  this.getPageConfigSpecimen((flag, type, ress) => {
686
+                    if(flag){
687
+                      if (type === 'scan') {
688
+                        setTimeout(()=>{
689
+                          this.Scanning_again();
690
+                        },500)
691
+                      }
692
+                    }
693
+                    if(ress){
694
+                      this.speNum = ress.specimenCount;
695
+                      uni.navigateTo({
696
+                        url: `../scanning_djInfo/scanning_djInfo?type=${
697
+                        this.queryObj.type
698
+                      }&type1=${
699
+                        this.queryObj.type1
700
+                      }&infoData=${encodeURIComponent(
701
+                        JSON.stringify(ress.data)
702
+                      )}&status=${ress.status}&msg=${ress.msg}&deptCode=${
703
+                        this.queryObj.code
704
+                      }&dept=${this.queryObj.dept}&ids=${encodeURIComponent(
705
+                        JSON.stringify(this.ids)
706
+                      )}&model=${encodeURIComponent(
707
+                        JSON.stringify(ress)
708
+                      )}&speNum=${this.speNum}&accountObj=${encodeURIComponent(
709
+                        JSON.stringify(this.accountObj)
710
+                      )}&deptId=${this.deptId}&scanOrHand=${type}&isEndDeptRed=${this.isEndDeptRed}`,
711
+                      });
712
+                    }
713
+                  }, type, ress.data, ress);
714
+                  return;
688 715
                 }
689 716
                 if(this.type === 'patientTransport' && this.queryObj.type1 == 'trans-dsd-1'){
690 717
                   // 门诊服务点
@@ -1118,7 +1145,84 @@
1118 1145
 				    });
1119 1146
 				  }
1120 1147
 				});
1121
-			}
1148
+			},
1149
+      // 页面控制-标本
1150
+      getPageConfigSpecimen(fn, type, specimenDTO, ress){
1151
+        const userData = uni.getStorageSync("userData");
1152
+        console.log('userData', userData);
1153
+        console.log('specimenDTO', specimenDTO);
1154
+        uni.showLoading({
1155
+          title: "加载中",
1156
+          mask: true,
1157
+        });
1158
+        // 查询标本配送业务
1159
+        post("/simple/data/fetchDataList/taskType",{
1160
+            "idx": 0,
1161
+            "sum": 10,
1162
+            "taskType": {
1163
+                "simpleQuery": true,
1164
+                "hosId": {
1165
+                    "id": userData.user.currentHospital.id
1166
+                },
1167
+                "associationType": {
1168
+                    "key": "association_types",
1169
+                    "value": "specimen"
1170
+                }
1171
+            }
1172
+        }).then((res) => {
1173
+          if (res.status == 200) {
1174
+            let taskTypeDTO = res.list[0];
1175
+        		if(taskTypeDTO){
1176
+              // 查询业务页面控制-标本
1177
+              post("/simple/data/fetchDataList/taskTypeConfig",{
1178
+                  "idx": 0,
1179
+                  "sum": 10,
1180
+                  "taskTypeConfig": {
1181
+                    taskTypeDTO,
1182
+                  }
1183
+              }).then((res) => {
1184
+                uni.hideLoading();
1185
+                if (res.status == 200) {
1186
+                  let data = res.list[0];
1187
+              		if(data){
1188
+                    let deptNotAlertList = data.deptNotAlertList || [];
1189
+                    deptNotAlertList = deptNotAlertList.map(v => v.id);
1190
+                    if(deptNotAlertList.includes(specimenDTO.checkDept.id)){
1191
+                      this.isEndDeptRed = true;
1192
+                      console.log('红色')
1193
+                      fn(false, type, ress);
1194
+                    }else{
1195
+                      this.isEndDeptRed = false;
1196
+                      fn(true, type, ress);
1197
+                    }
1198
+                    console.log('this.isEndDeptRed', this.isEndDeptRed);
1199
+                  }else{
1200
+                    this.isEndDeptRed = false;
1201
+                    fn(true, type, ress);
1202
+                  }
1203
+                } else {
1204
+                  uni.showToast({
1205
+                    icon: "none",
1206
+                    title: res.msg || "接口获取数据失败!",
1207
+                  });
1208
+                }
1209
+              });
1210
+            }else{
1211
+              uni.hideLoading();
1212
+              uni.showToast({
1213
+                icon: "none",
1214
+                title: "未查询到标本配送业务!",
1215
+              });
1216
+            }
1217
+          } else {
1218
+            uni.hideLoading();
1219
+            uni.showToast({
1220
+              icon: "none",
1221
+              title: res.msg || "接口获取数据失败!",
1222
+            });
1223
+          }
1224
+        });
1225
+      },
1122 1226
     },
1123 1227
     onShow() {
1124 1228
       this.SMFlag = true;

+ 107 - 10
pages/scanning_djInfo/scanning_djInfo.vue

@@ -51,7 +51,7 @@
51 51
       <view>
52 52
         {{ infoDATA.data.sickRoom ? infoDATA.data.sickRoom.dept : "" }}
53 53
         <text style="width: 4em;text-align: center;margin-left: 1em;margin-right: 1em;" class="newicon newicon-arrow-right-full"></text>
54
-        {{ infoDATA.data.checkDept ? infoDATA.data.checkDept.dept : "" }}
54
+        <text :class="{ red: isEndDeptRedShow }">{{ infoDATA.data.checkDept ? infoDATA.data.checkDept.dept : "" }}</text>
55 55
       </view>
56 56
       <view>患者姓名 : {{ infoDATA.data.patientName}}({{infoDATA.data.bedNum}})</view>
57 57
       <view>住院号 : {{ infoDATA.data.residenceNo || '-' }}</view>
@@ -66,7 +66,7 @@
66 66
       <view>
67 67
         {{ infoDATA.data.sickRoom ? infoDATA.data.sickRoom.dept : "" }}
68 68
         <text style="width: 4em;text-align: center;margin-left: 1em;margin-right: 1em;" class="newicon newicon-arrow-right-full"></text>
69
-        {{ infoDATA.data.checkDept ? infoDATA.data.checkDept.dept : "" }}
69
+        <text :class="{ red: isEndDeptRedShow }">{{ infoDATA.data.checkDept ? infoDATA.data.checkDept.dept : "" }}</text>
70 70
       </view>
71 71
       <view>患者姓名 : {{ infoDATA.data.patientName}}({{infoDATA.data.bedNum}})</view>
72 72
       <view>住院号 : {{ infoDATA.data.residenceNo || '-' }}</view>
@@ -182,6 +182,9 @@
182 182
 		},
183 183
     data() {
184 184
       return {
185
+        // 终点科室标红
186
+        isEndDeptRedShow: false,
187
+        isEndDeptRed: false,
185 188
 				// 调研二维码
186 189
 				isQuestionModel:false,
187 190
 				gdId:null,
@@ -340,13 +343,25 @@
340 343
                 if (res.status == 200 || res.status == 11111) {
341 344
                   //标本和标本轮巡工单,扫描标本后会自动调用摄像头,继续扫描,直到status不是200
342 345
                   if ((this.type == "specimenPlan" || this.type == "specimen") && res.status != 11111) {
343
-                      if (type === 'scan') {
344
-                        setTimeout(()=>{
345
-                          this.Scanning_again();
346
-                        },500)
347
-                      } else if (type === 'hand') {
348
-                        this.hand_again();
346
+                    this.getPageConfigSpecimen((flag, type, res) => {
347
+                      if(flag){
348
+                        if (type === 'scan') {
349
+                          setTimeout(()=>{
350
+                            this.Scanning_again();
351
+                          },500)
352
+                        } else if (type === 'hand') {
353
+                          this.hand_again();
354
+                        }
355
+                      }
356
+                      if(res){
357
+                        this.isEndDeptRedShow = this.isEndDeptRed;
358
+                        this.infoDATA = res;
359
+                        this.speNum = res.specimenCount;
360
+                        this.res["status"] = res.status;
361
+                        this.res["msg"] = res.msg;
349 362
                       }
363
+                    }, type, res.data, res);
364
+                    return;
350 365
                   }
351 366
                   if (
352 367
                     this.type == "inspect" ||
@@ -702,15 +717,97 @@
702 717
 				    });
703 718
 				  }
704 719
 				});
705
-			}
720
+			},
721
+      // 页面控制-标本
722
+      getPageConfigSpecimen(fn, type, specimenDTO, ress){
723
+        const userData = uni.getStorageSync("userData");
724
+        console.log('userData', userData);
725
+        console.log('specimenDTO', specimenDTO);
726
+        uni.showLoading({
727
+          title: "加载中",
728
+          mask: true,
729
+        });
730
+        // 查询标本配送业务
731
+        post("/simple/data/fetchDataList/taskType",{
732
+            "idx": 0,
733
+            "sum": 10,
734
+            "taskType": {
735
+                "simpleQuery": true,
736
+                "hosId": {
737
+                    "id": userData.user.currentHospital.id
738
+                },
739
+                "associationType": {
740
+                    "key": "association_types",
741
+                    "value": "specimen"
742
+                }
743
+            }
744
+        }).then((res) => {
745
+          if (res.status == 200) {
746
+            let taskTypeDTO = res.list[0];
747
+        		if(taskTypeDTO){
748
+              // 查询业务页面控制-标本
749
+              post("/simple/data/fetchDataList/taskTypeConfig",{
750
+                  "idx": 0,
751
+                  "sum": 10,
752
+                  "taskTypeConfig": {
753
+                    taskTypeDTO,
754
+                  }
755
+              }).then((res) => {
756
+                uni.hideLoading();
757
+                if (res.status == 200) {
758
+                  let data = res.list[0];
759
+              		if(data){
760
+                    let deptNotAlertList = data.deptNotAlertList || [];
761
+                    deptNotAlertList = deptNotAlertList.map(v => v.id);
762
+                    if(deptNotAlertList.includes(specimenDTO.checkDept.id)){
763
+                      this.isEndDeptRed = true;
764
+                      console.log('红色')
765
+                      fn(false, type, ress);
766
+                    }else{
767
+                      this.isEndDeptRed = false;
768
+                      fn(true, type, ress);
769
+                    }
770
+                    console.log('this.isEndDeptRed', this.isEndDeptRed);
771
+                  }else{
772
+                    this.isEndDeptRed = false;
773
+                    fn(true, type, ress);
774
+                  }
775
+                } else {
776
+                  uni.showToast({
777
+                    icon: "none",
778
+                    title: res.msg || "接口获取数据失败!",
779
+                  });
780
+                }
781
+              });
782
+            }else{
783
+              uni.hideLoading();
784
+              uni.showToast({
785
+                icon: "none",
786
+                title: "未查询到标本配送业务!",
787
+              });
788
+            }
789
+          } else {
790
+            uni.hideLoading();
791
+            uni.showToast({
792
+              icon: "none",
793
+              title: res.msg || "接口获取数据失败!",
794
+            });
795
+          }
796
+        });
797
+      },
706 798
     },
707 799
     onShow() {
708 800
       this.SMFlag = true;
709 801
       this.gotoFlag = true;
710 802
     },
711 803
     onLoad(options) {
804
+      this.isEndDeptRedShow = options.isEndDeptRed === 'true';
712 805
       if (options.status == 200&&options.scanOrHand === 'hand'&&(options.type === "specimen"||options.type === "specimenPlan")) {
713
-        this.hand_again();
806
+        this.getPageConfigSpecimen((flag) => {
807
+          if(flag){
808
+            this.hand_again();
809
+          }
810
+        });
714 811
       }
715 812
       console.log(options, "options");
716 813
       if (options.speNum) {