瀏覽代碼

陪检功能优化

seimin 2 月之前
父節點
當前提交
cd2d61e28e
共有 3 個文件被更改,包括 252 次插入448 次删除
  1. 210 206
      components/bigScreen/bigScreen.vue
  2. 5 0
      pages/receipt_infopage/receipt_infopage.vue
  3. 37 242
      pages/receiptpage/receiptpage.vue

+ 210 - 206
components/bigScreen/bigScreen.vue

@@ -397,78 +397,203 @@
397 397
         }
398 398
         this.SMFlag = false;
399 399
         SM().then((content) => {
400
-          uni.showLoading({
401
-            title: "加载中",
402
-            mask: true,
403
-          });
404
-          //检验二维码的有效性(扫码前必须验证)
405
-          post("/dept/scanning", {
406
-              content,
407
-            })
408
-            .then((result) => {
409
-              this.currentCode = result.code;
410
-              this.SMFlag = true;
411
-              // 200检测通过,201没有有效期也通过。
412
-              if (result.state == 200 || result.state == 201) {
413
-                let data = {
414
-                  code: result.code, //二维码
415
-                };
416
-                //微信—大扫描(科室码,患者码,标本码,快捷建单码,药包码)
417
-                let code = result.code.includes(qrcodePrefix) ? result.code : qrcodePrefix + result.code;
418
-                post("/workerOrder/scanCode", { code, hosId: this.hosId })
419
-                  .then((res) => {
420
-                    uni.hideLoading();
421
-                    if (res.status == 200) {
422
-                      // 扫描标本码
423
-                      if (res.type == "specimen") {
424
-                        let infoDATA = {
425
-                          stype: res.data.stype,
426
-                          scode: res.data.scode,
427
-                          patientName: res.data.patientName,
428
-                          sickRoom: res.data.sickRoom ?
429
-                            res.data.sickRoom.dept : "-",
430
-                          checkDept: res.data.checkDept ?
431
-                            res.data.checkDept.dept : "-",
432
-                          bedNum: res.data.bedNum,
433
-                        };
400
+          this.ScanningCommon(qrcodePrefix, content);
401
+        }).catch(err => {
402
+          this.SMFlag = true;
403
+        });
404
+      },
405
+      //底部扫描-无须扫码
406
+      ScanningCommon(qrcodePrefix = '', content){
407
+        uni.showLoading({
408
+          title: "加载中",
409
+          mask: true,
410
+        });
411
+        //检验二维码的有效性(扫码前必须验证)
412
+        post("/dept/scanning", {
413
+            content,
414
+          })
415
+          .then((result) => {
416
+            this.currentCode = result.code;
417
+            this.SMFlag = true;
418
+            // 200检测通过,201没有有效期也通过。
419
+            if (result.state == 200 || result.state == 201) {
420
+              let data = {
421
+                code: result.code, //二维码
422
+              };
423
+              //微信—大扫描(科室码,患者码,标本码,快捷建单码,药包码)
424
+              let code = result.code.includes(qrcodePrefix) ? result.code : qrcodePrefix + result.code;
425
+              post("/workerOrder/scanCode", { code, hosId: this.hosId })
426
+                .then((res) => {
427
+                  uni.hideLoading();
428
+                  if (res.status == 200) {
429
+                    // 扫描标本码
430
+                    if (res.type == "specimen") {
431
+                      let infoDATA = {
432
+                        stype: res.data.stype,
433
+                        scode: res.data.scode,
434
+                        patientName: res.data.patientName,
435
+                        sickRoom: res.data.sickRoom ?
436
+                          res.data.sickRoom.dept : "-",
437
+                        checkDept: res.data.checkDept ?
438
+                          res.data.checkDept.dept : "-",
439
+                        bedNum: res.data.bedNum,
440
+                      };
441
+                      uni.navigateTo({
442
+                        url: `../scanning_B/scanning_B?res=${encodeURIComponent(
443
+                        JSON.stringify(res)
444
+                      )}&infoDATA=${encodeURIComponent(
445
+                        JSON.stringify(infoDATA)
446
+                      )}`,
447
+                      });
448
+                    } else if (res.type == "patient") {
449
+                      //如果是患者腕带码
450
+                      // code: data.code //二维码
451
+                      res.workOrder = res.workOrder ? res.workOrder : []; //liao
452
+                      uni.navigateTo({
453
+                        url: `../scanning_ins/scanning_ins?code=${
454
+                        data.code
455
+                      }&infoDATA=${encodeURIComponent(
456
+                        JSON.stringify(res.data)
457
+                      )}&workData=${encodeURIComponent(
458
+                        JSON.stringify(res.workOrder)
459
+                      )}&patientOrders=${encodeURIComponent(
460
+                        JSON.stringify(res.patientOrders)
461
+                      )}`,
462
+                      });
463
+                    } else if (res.type == "quickOrder") {
464
+                      //快捷建单
465
+                      if(res.data.isDigitalHandover == 1){
434 466
                         uni.navigateTo({
435
-                          url: `../scanning_B/scanning_B?res=${encodeURIComponent(
436
-                          JSON.stringify(res)
437
-                        )}&infoDATA=${encodeURIComponent(
438
-                          JSON.stringify(infoDATA)
467
+                          url: `../specimenChecking/specimenChecking?infoDATA=${encodeURIComponent(
468
+                          JSON.stringify(res.data)
439 469
                         )}`,
440 470
                         });
441
-                      } else if (res.type == "patient") {
442
-                        //如果是患者腕带码
443
-                        // code: data.code //二维码
444
-                        res.workOrder = res.workOrder ? res.workOrder : []; //liao
471
+                      }else{
445 472
                         uni.navigateTo({
446
-                          url: `../scanning_ins/scanning_ins?code=${
447
-                          data.code
448
-                        }&infoDATA=${encodeURIComponent(
473
+                          url: `../shortcutbuildOrders/shortcutbuildOrders?infoDATA=${encodeURIComponent(
449 474
                           JSON.stringify(res.data)
450
-                        )}&workData=${encodeURIComponent(
451
-                          JSON.stringify(res.workOrder)
452
-                        )}&patientOrders=${encodeURIComponent(
453
-                          JSON.stringify(res.patientOrders)
454 475
                         )}`,
455 476
                         });
456
-                      } else if (res.type == "quickOrder") {
457
-                        //快捷建单
458
-                        if(res.data.isDigitalHandover == 1){
459
-                          uni.navigateTo({
460
-                            url: `../specimenChecking/specimenChecking?infoDATA=${encodeURIComponent(
461
-                            JSON.stringify(res.data)
462
-                          )}`,
463
-                          });
477
+                      }
478
+                    } else if (res.type == "dept") {
479
+                      // 扫描科室码
480
+                      // code: data.code //二维码
481
+                      let infoDATA = res.data;
482
+                      console.log(infoDATA)
483
+                      // 判断是否是标本配送,并且仅仅只有这一种业务类型,默认全选,并跳转到下一步;
484
+                      // 判断是否是标本轮巡 ,并且仅仅只有这一种业务类型,并且只有一个工单,默认选中,并跳转到下一步;
485
+                      if(Object.keys(infoDATA).length === 1 && (infoDATA.specimen || (infoDATA.specimenPlan && infoDATA.specimenPlan.length === 1))){
486
+                        this.infoDATA = infoDATA;
487
+                        this.workData = infoDATA.specimen || infoDATA.specimenPlan;
488
+                        this.tabType = infoDATA.specimen ? 'specimen' : 'specimenPlan';
489
+                        this.code = data.code;
490
+                        this.selectArr = [];
491
+                        for (var i = 0; i < this.workData.length; i++) {
492
+                          this.selectArr.push(this.workData[i].id);
493
+                        }
494
+                        this.userId.ids = this.selectArr;
495
+                        this.orderDeptHandler(true);
496
+                      }else if(res.deptHandoverType && res.deptHandoverType.value == 'clinicalWaste'){
497
+                        // 医废
498
+                        uni.navigateTo({
499
+                          url: `/pages/medicalWaste/medicalWasteSignIn/medicalWasteSignIn?code=${data.code}&deptName=${res.deptName}&deptId=${res.deptId}`,
500
+                        });
501
+                      }else if(res.sign === 'patientIntelligentScan'){
502
+                        // 患者陪检和患者其他服务智能扫码
503
+                        uni.navigateTo({
504
+                          url: `/pages/newSendBack/sendBackOrder/sendBackOrder?deptId=${res.deptId}&code=${data.code}`,
505
+                        });
506
+                      }else{
507
+                        uni.navigateTo({
508
+                          url: `../scanning_all/scanning_all?infoDATA=${encodeURIComponent(
509
+                          JSON.stringify(infoDATA)
510
+                        )}&code=${data.code}&deptName=${res.deptName}&deptId=${res.deptId}`,
511
+                        });
512
+                      }
513
+                    } else if (res.type == 'drugsBag') {
514
+                      if (res.drugsBagType == 'drugsJpbag' || res.drugsBagType == 'drugsWestern' || res.drugsBagType == 'drugsReturn' || res.drugsBagType == 'drugsPoison' || res.drugsBagType == 'drugsHerbal') {
515
+                        //新药品-扫静配|西药|退药|毒麻|中草药
516
+                        if(res.orderId){
517
+                          // 有工单
518
+                          this.getInfo(res, code);
464 519
                         }else{
520
+                          // 没有工单,进入起点科室流程
465 521
                           uni.navigateTo({
466
-                            url: `../shortcutbuildOrders/shortcutbuildOrders?infoDATA=${encodeURIComponent(
467
-                            JSON.stringify(res.data)
468
-                          )}`,
522
+                            url: `/pages/newDrug/createOrder/createOrder?drugsBagType=${res.drugsBagType}&drugsBagId=${res.drugsBagId}&type=build`,
469 523
                           });
470 524
                         }
471
-                      } else if (res.type == "dept") {
525
+                      }else{
526
+                        //扫药包码
527
+                        uni.navigateTo({
528
+                          url: `/pages/scanning_drug/scanning_drug?drugsBagId=${res.drugsBagId}&drugsBagBatchNo=${res.drugsBagBatchNo}`,
529
+                        });
530
+                      }
531
+                    } else if (res.type == 'nucleicAcid') {
532
+                      //扫核酸码
533
+                      uni.navigateTo({
534
+                        url: `/pages/scanning_nucleicAcid/scanning_nucleicAcid?qrcode=${data.code}`,
535
+                      });
536
+                    } else if (res.type == 'blood') {
537
+                      //扫血制品
538
+                      // 判断size,多个则进入新页面选择
539
+                      if(res.size > 1){
540
+                        uni.navigateTo({
541
+                          url: `/pages/bloodSelect/bloodSelect?qrcode=${data.code}&navigateTo=scanning_blood`,
542
+                        });
543
+                      } else {
544
+                        uni.navigateTo({
545
+                          url: `/pages/scanning_blood/scanning_blood?qrcode=${data.code}`,
546
+                        });
547
+                      }
548
+                    } else if (res.type == 'receiveOrder') {
549
+                      //扫快捷接单
550
+                      uni.showModal({
551
+                        title: "提示",
552
+                        content: `您本次接单包括${res.names.join('、')},一共含有${res.data.length}个工单,是否确认接单?`,
553
+                        success: function(result) {
554
+                          if (result.confirm) {
555
+                            uni.showLoading({
556
+                              title: "加载中",
557
+                              mask: true,
558
+                            });
559
+                            post("/workerOrder/receiveOrders", {ids: res.data.toString()}).then((result) => {
560
+                              uni.hideLoading();
561
+                              if (result.status == 200) {
562
+                                uni.showModal({
563
+                                  title: "提示",
564
+                                  content: `本次接单包括${res.names.join('、')},${res.data.length}个工单已接单完成`,
565
+                                  showCancel: false,
566
+                                  success: function(res) {
567
+                                    if (res.confirm) {
568
+                                      console.log("用户点击确定");
569
+                                      uni.redirectTo({
570
+                                        url: "../receiptpage/receiptpage",
571
+                                      });
572
+                                    } else if (res.cancel) {
573
+                                      console.log("用户点击取消");
574
+                                    }
575
+                                  },
576
+                                });
577
+                              } else {
578
+                                uni.showToast({
579
+                                  icon: "none",
580
+                                  title: result.msg || "接口获取数据失败!",
581
+                                });
582
+                              }
583
+                            });
584
+                          } else if (result.cancel) {
585
+                            console.log("用户点击取消");
586
+                          }
587
+                        },
588
+                      });
589
+                    } else if (res.type == 'bloodTake') {
590
+                      if(res.data){
591
+                        //新血制品-扫科室
592
+                        uni.navigateTo({
593
+                          url: `/pages/newBlood/startOrderSignBlood/startOrderSignBlood?deptId=${res.deptId}&deptName=${res.deptName}&taskTypeId=${res.taskTypeId}`,
594
+                        });
595
+                      }else{
596
+                        // 走type是dept的流程
472 597
                         // 扫描科室码
473 598
                         // code: data.code //二维码
474 599
                         let infoDATA = res.data;
@@ -486,16 +611,6 @@
486 611
                           }
487 612
                           this.userId.ids = this.selectArr;
488 613
                           this.orderDeptHandler(true);
489
-                        }else if(res.deptHandoverType && res.deptHandoverType.value == 'clinicalWaste'){
490
-                          // 医废
491
-                          uni.navigateTo({
492
-                            url: `/pages/medicalWaste/medicalWasteSignIn/medicalWasteSignIn?code=${data.code}&deptName=${res.deptName}&deptId=${res.deptId}`,
493
-                          });
494
-                        }else if(res.sign === 'patientIntelligentScan'){
495
-                          // 患者陪检和患者其他服务智能扫码
496
-                          uni.navigateTo({
497
-                            url: `/pages/newSendBack/sendBackOrder/sendBackOrder?deptId=${res.deptId}&code=${data.code}`,
498
-                          });
499 614
                         }else{
500 615
                           uni.navigateTo({
501 616
                             url: `../scanning_all/scanning_all?infoDATA=${encodeURIComponent(
@@ -503,150 +618,39 @@
503 618
                           )}&code=${data.code}&deptName=${res.deptName}&deptId=${res.deptId}`,
504 619
                           });
505 620
                         }
506
-                      } else if (res.type == 'drugsBag') {
507
-                        if (res.drugsBagType == 'drugsJpbag' || res.drugsBagType == 'drugsWestern' || res.drugsBagType == 'drugsReturn' || res.drugsBagType == 'drugsPoison' || res.drugsBagType == 'drugsHerbal') {
508
-                          //新药品-扫静配|西药|退药|毒麻|中草药
509
-                          if(res.orderId){
510
-                            // 有工单
511
-                            this.getInfo(res, code);
512
-                          }else{
513
-                            // 没有工单,进入起点科室流程
514
-                            uni.navigateTo({
515
-                              url: `/pages/newDrug/createOrder/createOrder?drugsBagType=${res.drugsBagType}&drugsBagId=${res.drugsBagId}&type=build`,
516
-                            });
517
-                          }
518
-                        }else{
519
-                          //扫药包码
520
-                          uni.navigateTo({
521
-                            url: `/pages/scanning_drug/scanning_drug?drugsBagId=${res.drugsBagId}&drugsBagBatchNo=${res.drugsBagBatchNo}`,
522
-                          });
523
-                        }
524
-                      } else if (res.type == 'nucleicAcid') {
525
-                        //扫核酸码
526
-                        uni.navigateTo({
527
-                          url: `/pages/scanning_nucleicAcid/scanning_nucleicAcid?qrcode=${data.code}`,
528
-                        });
529
-                      } else if (res.type == 'blood') {
530
-                        //扫血制品
531
-                        // 判断size,多个则进入新页面选择
532
-                        if(res.size > 1){
533
-                          uni.navigateTo({
534
-                            url: `/pages/bloodSelect/bloodSelect?qrcode=${data.code}&navigateTo=scanning_blood`,
535
-                          });
536
-                        } else {
537
-                          uni.navigateTo({
538
-                            url: `/pages/scanning_blood/scanning_blood?qrcode=${data.code}`,
539
-                          });
540
-                        }
541
-                      } else if (res.type == 'receiveOrder') {
542
-                        //扫快捷接单
543
-                        uni.showModal({
544
-                          title: "提示",
545
-                          content: `您本次接单包括${res.names.join('、')},一共含有${res.data.length}个工单,是否确认接单?`,
546
-                          success: function(result) {
547
-                            if (result.confirm) {
548
-                              uni.showLoading({
549
-                                title: "加载中",
550
-                                mask: true,
551
-                              });
552
-                              post("/workerOrder/receiveOrders", {ids: res.data.toString()}).then((result) => {
553
-                                uni.hideLoading();
554
-                                if (result.status == 200) {
555
-                                  uni.showModal({
556
-                                    title: "提示",
557
-                                    content: `本次接单包括${res.names.join('、')},${res.data.length}个工单已接单完成`,
558
-                                    showCancel: false,
559
-                                    success: function(res) {
560
-                                      if (res.confirm) {
561
-                                        console.log("用户点击确定");
562
-                                        uni.redirectTo({
563
-                                          url: "../receiptpage/receiptpage",
564
-                                        });
565
-                                      } else if (res.cancel) {
566
-                                        console.log("用户点击取消");
567
-                                      }
568
-                                    },
569
-                                  });
570
-                                } else {
571
-                                  uni.showToast({
572
-                                    icon: "none",
573
-                                    title: result.msg || "接口获取数据失败!",
574
-                                  });
575
-                                }
576
-                              });
577
-                            } else if (result.cancel) {
578
-                              console.log("用户点击取消");
579
-                            }
580
-                          },
581
-                        });
582
-                      } else if (res.type == 'bloodTake') {
583
-                        if(res.data){
584
-                          //新血制品-扫科室
585
-                          uni.navigateTo({
586
-                            url: `/pages/newBlood/startOrderSignBlood/startOrderSignBlood?deptId=${res.deptId}&deptName=${res.deptName}&taskTypeId=${res.taskTypeId}`,
587
-                          });
588
-                        }else{
589
-                          // 走type是dept的流程
590
-                          // 扫描科室码
591
-                          // code: data.code //二维码
592
-                          let infoDATA = res.data;
593
-                          console.log(infoDATA)
594
-                          // 判断是否是标本配送,并且仅仅只有这一种业务类型,默认全选,并跳转到下一步;
595
-                          // 判断是否是标本轮巡 ,并且仅仅只有这一种业务类型,并且只有一个工单,默认选中,并跳转到下一步;
596
-                          if(Object.keys(infoDATA).length === 1 && (infoDATA.specimen || (infoDATA.specimenPlan && infoDATA.specimenPlan.length === 1))){
597
-                            this.infoDATA = infoDATA;
598
-                            this.workData = infoDATA.specimen || infoDATA.specimenPlan;
599
-                            this.tabType = infoDATA.specimen ? 'specimen' : 'specimenPlan';
600
-                            this.code = data.code;
601
-                            this.selectArr = [];
602
-                            for (var i = 0; i < this.workData.length; i++) {
603
-                              this.selectArr.push(this.workData[i].id);
604
-                            }
605
-                            this.userId.ids = this.selectArr;
606
-                            this.orderDeptHandler(true);
607
-                          }else{
608
-                            uni.navigateTo({
609
-                              url: `../scanning_all/scanning_all?infoDATA=${encodeURIComponent(
610
-                              JSON.stringify(infoDATA)
611
-                            )}&code=${data.code}&deptName=${res.deptName}&deptId=${res.deptId}`,
612
-                            });
613
-                          }
614
-                        }
615
-                      } else if(res.type == 'clinicalWaste'){
616
-                        // 医废
617
-                        if(res.wasteDetails){
618
-                          uni.navigateTo({
619
-                            url: `/pages/medicalWaste/medicalWasteDetail/medicalWasteDetail?qrcode=${res.code}`,
620
-                          });
621
-                        }else{
622
-                          uni.navigateTo({
623
-                            url: `/pages/medicalWaste/medicalWasteBind/medicalWasteBind?qrcode=${res.code}`,
624
-                          });
625
-                        }
626 621
                       }
627
-                    } else {
628
-                      if(res.bigScanSpecialMsg){
622
+                    } else if(res.type == 'clinicalWaste'){
623
+                      // 医废
624
+                      if(res.wasteDetails){
629 625
                         uni.navigateTo({
630
-                          url: `../scanning_big_Result/scanning_big_Result?msg=${res.msg || ''}&qrcode=${this.currentCode}&bigScanSpecialMsg=${encodeURIComponent(JSON.stringify(res.bigScanSpecialMsg))}`,
626
+                          url: `/pages/medicalWaste/medicalWasteDetail/medicalWasteDetail?qrcode=${res.code}`,
631 627
                         });
632 628
                       }else{
633 629
                         uni.navigateTo({
634
-                          url: `../scanning_Result/scanning_Result?status=${res.status}&msg=${res.msg}&qrcode=${this.currentCode}`,
630
+                          url: `/pages/medicalWaste/medicalWasteBind/medicalWasteBind?qrcode=${res.code}`,
635 631
                         });
636 632
                       }
637 633
                     }
638
-                  });
639
-              } else {
640
-                uni.hideLoading();
641
-                uni.showToast({
642
-                  icon: "none",
643
-                  title: result.info || "接口获取数据失败!",
634
+                  } else {
635
+                    if(res.bigScanSpecialMsg){
636
+                      uni.navigateTo({
637
+                        url: `../scanning_big_Result/scanning_big_Result?msg=${res.msg || ''}&qrcode=${this.currentCode}&bigScanSpecialMsg=${encodeURIComponent(JSON.stringify(res.bigScanSpecialMsg))}`,
638
+                      });
639
+                    }else{
640
+                      uni.navigateTo({
641
+                        url: `../scanning_Result/scanning_Result?status=${res.status}&msg=${res.msg}&qrcode=${this.currentCode}`,
642
+                      });
643
+                    }
644
+                  }
644 645
                 });
645
-              }
646
-            })
647
-        }).catch(err => {
648
-          this.SMFlag = true;
649
-        });
646
+            } else {
647
+              uni.hideLoading();
648
+              uni.showToast({
649
+                icon: "none",
650
+                title: result.info || "接口获取数据失败!",
651
+              });
652
+            }
653
+          })
650 654
       },
651 655
     },
652 656
     onShow() {

+ 5 - 0
pages/receipt_infopage/receipt_infopage.vue

@@ -356,6 +356,7 @@
356 356
       <template
357 357
         v-if="((!infoDATA.worker)||(infoDATA.worker&&infoDATA.worker.id == currentUserId))&&infoDATA.gdState.value != 6&&infoDATA.gdState.value != 7&&infoDATA.gdState.value != 11">
358 358
         <view :class="[infoDATA.taskType.specialCloseButton == 1 ? 'btn3' : 'btn2']" v-if="
359
+          (hideInspectScan != 1 || (hideInspectScan == 1 && infoDATA.gdState.value == 4)) &&
359 360
           infoDATA.gdState.value != 2 &&
360 361
           infoDATA.taskType.associationType.value != 'jPBag' &&
361 362
           infoDATA.taskType.associationType.value != 'drugsBag' &&
@@ -490,6 +491,7 @@
490 491
         currentData: {}, //当前小扫描的工单对象
491 492
         multiplayerMode: 0,
492 493
         handoverOrder: 0,
494
+        hideInspectScan: 0,
493 495
         clinicalMultiplayerMode: 0,
494 496
         clinicalTaskIdsFlag: false,
495 497
         hosId: uni.getStorageSync('userData').user.currentHospital.id,
@@ -1599,13 +1601,16 @@
1599 1601
             if(result.list && result.list[0]){
1600 1602
               this.multiplayerMode = result.list[0].multiplayerMode;
1601 1603
               this.handoverOrder = result.list[0].handoverOrder;
1604
+              this.hideInspectScan = result.list[0].hideInspectScan;
1602 1605
             }else{
1603 1606
               this.multiplayerMode = 0;
1604 1607
               this.handoverOrder = 0;
1608
+              this.hideInspectScan = 0;
1605 1609
             }
1606 1610
           } else {
1607 1611
             this.multiplayerMode = 0;
1608 1612
             this.handoverOrder = 0;
1613
+            this.hideInspectScan = 0;
1609 1614
           }
1610 1615
         });
1611 1616
       },

+ 37 - 242
pages/receiptpage/receiptpage.vue

@@ -294,7 +294,7 @@
294 294
                 item.taskType.associationType.value != 'specimenPlan' &&
295 295
                 item.taskType.associationType.value != 'ordinary'
296 296
               ">
297
-              <view v-if="!(item.taskType.associationType.value == 'other' && (item.gdState.value == 4 && item.taskType.carryingCourses[0].actionsSwitch || item.gdState.value == 5 && item.taskType.carryingCourses[1].actionsSwitch))" class="page_item_btn" hover-class="seimin-btn-hover">
297
+              <view v-if="(hideInspectScan != 1 || (hideInspectScan == 1 && item.gdState.value == 4)) && !(item.taskType.associationType.value == 'other' && (item.gdState.value == 4 && item.taskType.carryingCourses[0].actionsSwitch || item.gdState.value == 5 && item.taskType.carryingCourses[1].actionsSwitch))" class="page_item_btn" hover-class="seimin-btn-hover">
298 298
                 <smallScreen :sData="item" :sType="1">扫码</smallScreen>
299 299
               </view>
300 300
               <!-- 其他临床服务-完成工单-待到达 -->
@@ -476,8 +476,10 @@
476 476
 				taskData:[], //任务类型数据
477 477
         currentId: 0,
478 478
         otherAssociationTypeId: null,
479
+        inspectAssociationTypeId: null,
479 480
         hosId: uni.getStorageSync('userData').user.currentHospital.id,
480 481
         workState: '1',
482
+        hideInspectScan: 0,
481 483
         clinicalMultiplayerMode: 0,
482 484
         showAppendUser: 0,
483 485
         signType4: false,
@@ -835,244 +837,7 @@
835 837
 				if(!this.isNumberKey){
836 838
 					scannerCode = scannerCode.replace('\n','')
837 839
 				}
838
-				if (!this.SMFlag) {
839
-				  return;
840
-				}
841
-				let qrcodePrefix = '';
842
-				this.SMFlag = false;
843
-				// SM().then((content) => {
844
-				  uni.showLoading({
845
-				    title: "加载中",
846
-				    mask: true,
847
-				  });
848
-				  //检验二维码的有效性(扫码前必须验证)
849
-				  post("/dept/scanning", {
850
-						content:scannerCode
851
-					})
852
-				    .then((result) => {
853
-				      this.currentCode = result.code;
854
-				      this.SMFlag = true;
855
-				      // 200检测通过,201没有有效期也通过。
856
-				      if (result.state == 200 || result.state == 201) {
857
-				        let data = {
858
-				          code: result.code, //二维码
859
-				        };
860
-				        //微信—大扫描(科室码,患者码,标本码,快捷建单码,药包码)
861
-				        let code = result.code.includes(qrcodePrefix) ? result.code : qrcodePrefix + result.code;
862
-				        post("/workerOrder/scanCode", { code, hosId: this.hosId })
863
-				          .then((res) => {
864
-				            uni.hideLoading();
865
-				            if (res.status == 200) {
866
-				              // 扫描标本码
867
-				              if (res.type == "specimen") {
868
-				                let infoDATA = {
869
-				                  stype: res.data.stype,
870
-				                  scode: res.data.scode,
871
-				                  patientName: res.data.patientName,
872
-				                  sickRoom: res.data.sickRoom ?
873
-				                    res.data.sickRoom.dept : "-",
874
-				                  checkDept: res.data.checkDept ?
875
-				                    res.data.checkDept.dept : "-",
876
-				                  bedNum: res.data.bedNum,
877
-				                };
878
-				                uni.navigateTo({
879
-				                  url: `../scanning_B/scanning_B?res=${encodeURIComponent(
880
-				                  JSON.stringify(res)
881
-				                )}&infoDATA=${encodeURIComponent(
882
-				                  JSON.stringify(infoDATA)
883
-				                )}`,
884
-				                });
885
-				              } else if (res.type == "patient") {
886
-				                //如果是患者腕带码
887
-				                // code: data.code //二维码
888
-				                res.workOrder = res.workOrder ? res.workOrder : []; //liao
889
-				                uni.navigateTo({
890
-				                  url: `../scanning_ins/scanning_ins?code=${
891
-				                  data.code
892
-				                }&infoDATA=${encodeURIComponent(
893
-				                  JSON.stringify(res.data)
894
-				                )}&workData=${encodeURIComponent(
895
-				                  JSON.stringify(res.workOrder)
896
-				                )}&patientOrders=${encodeURIComponent(
897
-				                  JSON.stringify(res.patientOrders)
898
-				                )}`,
899
-				                });
900
-				              } else if (res.type == "quickOrder") {
901
-				                //快捷建单
902
-				                if(res.data.isDigitalHandover == 1){
903
-				                  uni.navigateTo({
904
-				                    url: `../specimenChecking/specimenChecking?infoDATA=${encodeURIComponent(
905
-				                    JSON.stringify(res.data)
906
-				                  )}`,
907
-				                  });
908
-				                }else{
909
-				                  uni.navigateTo({
910
-				                    url: `../shortcutbuildOrders/shortcutbuildOrders?infoDATA=${encodeURIComponent(
911
-				                    JSON.stringify(res.data)
912
-				                  )}`,
913
-				                  });
914
-				                }
915
-				              } else if (res.type == "dept") {
916
-				                // 扫描科室码
917
-				                // code: data.code //二维码
918
-				                let infoDATA = res.data;
919
-				                console.log(infoDATA)
920
-				                // 判断是否是标本配送,并且仅仅只有这一种业务类型,默认全选,并跳转到下一步;
921
-				                // 判断是否是标本轮巡 ,并且仅仅只有这一种业务类型,并且只有一个工单,默认选中,并跳转到下一步;
922
-				                if(Object.keys(infoDATA).length === 1 && (infoDATA.specimen || (infoDATA.specimenPlan && infoDATA.specimenPlan.length === 1))){
923
-				                  this.infoDATA = infoDATA;
924
-				                  this.workData = infoDATA.specimen || infoDATA.specimenPlan;
925
-				                  this.tabType = infoDATA.specimen ? 'specimen' : 'specimenPlan';
926
-				                  this.code = data.code;
927
-				                  this.selectArr = [];
928
-				                  for (var i = 0; i < this.workData.length; i++) {
929
-				                    this.selectArr.push(this.workData[i].id);
930
-				                  }
931
-				                  this.userId.ids = this.selectArr;
932
-				                  this.orderDeptHandler(true);
933
-				                }else if(res.deptHandoverType && res.deptHandoverType.value == 'clinicalWaste'){
934
-				                  // 医废
935
-				                  uni.navigateTo({
936
-				                    url: `/pages/medicalWaste/medicalWasteSignIn/medicalWasteSignIn?code=${data.code}&deptName=${res.deptName}&deptId=${res.deptId}`,
937
-				                  });
938
-				                }else{
939
-				                  uni.navigateTo({
940
-				                    url: `../scanning_all/scanning_all?infoDATA=${encodeURIComponent(
941
-				                    JSON.stringify(infoDATA)
942
-				                  )}&code=${data.code}&deptName=${res.deptName}&deptId=${res.deptId}`,
943
-				                  });
944
-				                }
945
-				              } else if (res.type == 'drugsBag') {
946
-				                //扫药包码
947
-				                uni.navigateTo({
948
-				                  url: `/pages/scanning_drug/scanning_drug?drugsBagId=${res.drugsBagId}&drugsBagBatchNo=${res.drugsBagBatchNo}`,
949
-				                });
950
-				              } else if (res.type == 'nucleicAcid') {
951
-				                //扫核酸码
952
-				                uni.navigateTo({
953
-				                  url: `/pages/scanning_nucleicAcid/scanning_nucleicAcid?qrcode=${data.code}`,
954
-				                });
955
-				              } else if (res.type == 'blood') {
956
-				                //扫血制品
957
-				                // 判断size,多个则进入新页面选择
958
-				                if(res.size > 1){
959
-				                  uni.navigateTo({
960
-				                    url: `/pages/bloodSelect/bloodSelect?qrcode=${data.code}&navigateTo=scanning_blood`,
961
-				                  });
962
-				                } else {
963
-				                  uni.navigateTo({
964
-				                    url: `/pages/scanning_blood/scanning_blood?qrcode=${data.code}`,
965
-				                  });
966
-				                }
967
-				              } else if (res.type == 'receiveOrder') {
968
-				                //扫快捷接单
969
-				                uni.showModal({
970
-				                  title: "提示",
971
-				                  content: `您本次接单包括${res.names.join('、')},一共含有${res.data.length}个工单,是否确认接单?`,
972
-				                  success: function(result) {
973
-				                    if (result.confirm) {
974
-				                      uni.showLoading({
975
-				                        title: "加载中",
976
-				                        mask: true,
977
-				                      });
978
-				                      post("/workerOrder/receiveOrders", {ids: res.data.toString()}).then((result) => {
979
-				                        uni.hideLoading();
980
-				                        if (result.status == 200) {
981
-				                          uni.showModal({
982
-				                            title: "提示",
983
-				                            content: `本次接单包括${res.names.join('、')},${res.data.length}个工单已接单完成`,
984
-				                            showCancel: false,
985
-				                            success: function(res) {
986
-				                              if (res.confirm) {
987
-				                                console.log("用户点击确定");
988
-				                                uni.redirectTo({
989
-				                                  url: "../receiptpage/receiptpage",
990
-				                                });
991
-				                              } else if (res.cancel) {
992
-				                                console.log("用户点击取消");
993
-				                              }
994
-				                            },
995
-				                          });
996
-				                        } else {
997
-				                          uni.showToast({
998
-				                            icon: "none",
999
-				                            title: result.msg || "接口获取数据失败!",
1000
-				                          });
1001
-				                        }
1002
-				                      });
1003
-				                    } else if (result.cancel) {
1004
-				                      console.log("用户点击取消");
1005
-				                    }
1006
-				                  },
1007
-				                });
1008
-				              } else if (res.type == 'bloodTake') {
1009
-				                if(res.data){
1010
-				                  //新血制品-扫科室
1011
-				                  uni.navigateTo({
1012
-				                    url: `/pages/newBlood/startOrderSignBlood/startOrderSignBlood?deptId=${res.deptId}&deptName=${res.deptName}&taskTypeId=${res.taskTypeId}`,
1013
-				                  });
1014
-				                }else{
1015
-				                  // 走type是dept的流程
1016
-				                  // 扫描科室码
1017
-				                  // code: data.code //二维码
1018
-				                  let infoDATA = res.data;
1019
-				                  console.log(infoDATA)
1020
-				                  // 判断是否是标本配送,并且仅仅只有这一种业务类型,默认全选,并跳转到下一步;
1021
-				                  // 判断是否是标本轮巡 ,并且仅仅只有这一种业务类型,并且只有一个工单,默认选中,并跳转到下一步;
1022
-				                  if(Object.keys(infoDATA).length === 1 && (infoDATA.specimen || (infoDATA.specimenPlan && infoDATA.specimenPlan.length === 1))){
1023
-				                    this.infoDATA = infoDATA;
1024
-				                    this.workData = infoDATA.specimen || infoDATA.specimenPlan;
1025
-				                    this.tabType = infoDATA.specimen ? 'specimen' : 'specimenPlan';
1026
-				                    this.code = data.code;
1027
-				                    this.selectArr = [];
1028
-				                    for (var i = 0; i < this.workData.length; i++) {
1029
-				                      this.selectArr.push(this.workData[i].id);
1030
-				                    }
1031
-				                    this.userId.ids = this.selectArr;
1032
-				                    this.orderDeptHandler(true);
1033
-				                  }else{
1034
-				                    uni.navigateTo({
1035
-				                      url: `../scanning_all/scanning_all?infoDATA=${encodeURIComponent(
1036
-				                      JSON.stringify(infoDATA)
1037
-				                    )}&code=${data.code}&deptName=${res.deptName}&deptId=${res.deptId}`,
1038
-				                    });
1039
-				                  }
1040
-				                }
1041
-				              } else if(res.type == 'clinicalWaste'){
1042
-				                // 医废
1043
-				                if(res.wasteDetails){
1044
-				                  uni.navigateTo({
1045
-				                    url: `/pages/medicalWaste/medicalWasteDetail/medicalWasteDetail?qrcode=${res.code}`,
1046
-				                  });
1047
-				                }else{
1048
-				                  uni.navigateTo({
1049
-				                    url: `/pages/medicalWaste/medicalWasteBind/medicalWasteBind?qrcode=${res.code}`,
1050
-				                  });
1051
-				                }
1052
-				              }
1053
-				            } else {
1054
-				              if(res.bigScanSpecialMsg){
1055
-				                uni.navigateTo({
1056
-				                  url: `../scanning_big_Result/scanning_big_Result?msg=${res.msg || ''}&qrcode=${this.currentCode}&bigScanSpecialMsg=${encodeURIComponent(JSON.stringify(res.bigScanSpecialMsg))}`,
1057
-				                });
1058
-				              }else{
1059
-				                uni.navigateTo({
1060
-				                  url: `../scanning_Result/scanning_Result?status=${res.status}&msg=${res.msg}&qrcode=${this.currentCode}`,
1061
-				                });
1062
-				              }
1063
-				            }
1064
-				          });
1065
-				      } else {
1066
-				        uni.hideLoading();
1067
-				        uni.showToast({
1068
-				          icon: "none",
1069
-				          title: result.info || "接口获取数据失败!",
1070
-				        });
1071
-				      }
1072
-				    })
1073
-				// }).catch(err => {
1074
-				//   this.SMFlag = true;
1075
-				// });
840
+        this.$refs.bigscreen.ScanningCommon('', scannerCode);
1076 841
 			},
1077 842
 			// 搜索科室
1078 843
 			searchAdm(){
@@ -1103,8 +868,8 @@
1103 868
           title: "加载中",
1104 869
           mask: true,
1105 870
         });
871
+        let res = await this.getAssociationTypes();
1106 872
         //获取其他临床服务业务类型
1107
-        let res = await this.getOtherAssociationTypes();
1108 873
         let otherAssociationType = res.find(v => v.value === 'other');
1109 874
         this.otherAssociationTypeId = otherAssociationType ? otherAssociationType.id : null;
1110 875
         if(this.otherAssociationTypeId){
@@ -1129,6 +894,23 @@
1129 894
             title: '未设置其他临床服务业务类型!'
1130 895
           })
1131 896
         }
897
+        
898
+        //获取患者陪检业务类型
899
+        let inspectAssociationType = res.find(v => v.value === 'inspect');
900
+        this.inspectAssociationTypeId = inspectAssociationType ? inspectAssociationType.id : null;
901
+        if(this.inspectAssociationTypeId){
902
+          // 获取检查页面控制开关
903
+          let result = await this.getTaskInspectConfig();
904
+          if (result.status == 200) {
905
+            if(result.list && result.list[0]){
906
+              this.hideInspectScan = result.list[0].hideInspectScan;
907
+            }else{
908
+              this.hideInspectScan = 0;
909
+            }
910
+          } else {
911
+            this.hideInspectScan = 0;
912
+          }
913
+        }
1132 914
 
1133 915
         this.getBloodPageConfig()
1134 916
         this.waitingOrdersGetNum();
@@ -1166,8 +948,8 @@
1166 948
           this.takeCodeType = {};
1167 949
         }
1168 950
       },
1169
-      //获取其他临床服务业务类型
1170
-      getOtherAssociationTypes(){
951
+      //获取s业务类型
952
+      getAssociationTypes(){
1171 953
         return post('/common/common/getDictionary', {
1172 954
           "type": "list",
1173 955
           "key": "association_types"
@@ -1184,6 +966,19 @@
1184 966
             }
1185 967
         });
1186 968
       },
969
+      // 获取检查页面控制开关
970
+      getTaskInspectConfig(){
971
+        return post("/simple/data/fetchDataList/taskTypeConfig", {
972
+            "idx": 0,
973
+            "sum": 10,
974
+            "taskTypeConfig": {
975
+              "taskTypeDTO": {
976
+                "hosId": { id: this.hosId },
977
+                "associationType": { key: "association_types", value: "inspect" },
978
+              }
979
+            }
980
+        });
981
+      },
1187 982
       // 获取血制品页面控制开关
1188 983
       getTaskBloodConfig(){
1189 984
         return post("/simple/data/fetchDataList/taskTypeConfig", {