瀏覽代碼

Merge branch 'master' of http://git.dashitech.com/seimin/zy-wechat

maotao 1 月之前
父節點
當前提交
701ffab8b6

+ 200 - 218
components/bigScreen/bigScreen.vue

@@ -397,251 +397,233 @@
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
-                          });
464
-                        }else{
465
-                          uni.navigateTo({
466
-                            url: `../shortcutbuildOrders/shortcutbuildOrders?infoDATA=${encodeURIComponent(
467
-                            JSON.stringify(res.data)
468
-                          )}`,
469
-                          });
470
-                        }
471
-                      } else if (res.type == "dept") {
472
-                        // 扫描科室码
473
-                        // code: data.code //二维码
474
-                        let infoDATA = res.data;
475
-                        console.log(infoDATA)
477
+                      }
478
+                    } else if (res.type == "dept") {
479
+                      // 扫描科室码
480
+                      // code: data.code //二维码
481
+                      let infoDATA = res.data;
482
+                      console.log(infoDATA)
483
+
484
+                      if(res.sign === 'bloodTake'){
485
+                        //新血制品-扫科室
486
+                        uni.navigateTo({
487
+                          url: `/pages/newBlood/startOrderSignBlood/startOrderSignBlood?deptId=${res.deptId}&deptName=${res.deptName}&taskTypeId=${res.taskTypeId}`,
488
+                        });
489
+                      }else if(Object.keys(infoDATA).length === 1 && (infoDATA.specimen || (infoDATA.specimenPlan && infoDATA.specimenPlan.length === 1))){
476 490
                         // 判断是否是标本配送,并且仅仅只有这一种业务类型,默认全选,并跳转到下一步;
477 491
                         // 判断是否是标本轮巡 ,并且仅仅只有这一种业务类型,并且只有一个工单,默认选中,并跳转到下一步;
478
-                        if(Object.keys(infoDATA).length === 1 && (infoDATA.specimen || (infoDATA.specimenPlan && infoDATA.specimenPlan.length === 1))){
479
-                          this.infoDATA = infoDATA;
480
-                          this.workData = infoDATA.specimen || infoDATA.specimenPlan;
481
-                          this.tabType = infoDATA.specimen ? 'specimen' : 'specimenPlan';
482
-                          this.code = data.code;
483
-                          this.selectArr = [];
484
-                          for (var i = 0; i < this.workData.length; i++) {
485
-                            this.selectArr.push(this.workData[i].id);
486
-                          }
487
-                          this.userId.ids = this.selectArr;
488
-                          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{
495
-                          uni.navigateTo({
496
-                            url: `../scanning_all/scanning_all?infoDATA=${encodeURIComponent(
497
-                            JSON.stringify(infoDATA)
498
-                          )}&code=${data.code}&deptName=${res.deptName}&deptId=${res.deptId}`,
499
-                          });
492
+                        this.infoDATA = infoDATA;
493
+                        this.workData = infoDATA.specimen || infoDATA.specimenPlan;
494
+                        this.tabType = infoDATA.specimen ? 'specimen' : 'specimenPlan';
495
+                        this.code = data.code;
496
+                        this.selectArr = [];
497
+                        for (var i = 0; i < this.workData.length; i++) {
498
+                          this.selectArr.push(this.workData[i].id);
500 499
                         }
501
-                      } else if (res.type == 'drugsBag') {
502
-                        if (res.drugsBagType == 'drugsJpbag' || res.drugsBagType == 'drugsWestern' || res.drugsBagType == 'drugsReturn' || res.drugsBagType == 'drugsPoison' || res.drugsBagType == 'drugsHerbal') {
503
-                          //新药品-扫静配|西药|退药|毒麻|中草药
504
-                          if(res.orderId){
505
-                            // 有工单
506
-                            this.getInfo(res, code);
507
-                          }else{
508
-                            // 没有工单,进入起点科室流程
509
-                            uni.navigateTo({
510
-                              url: `/pages/newDrug/createOrder/createOrder?drugsBagType=${res.drugsBagType}&drugsBagId=${res.drugsBagId}&type=build`,
511
-                            });
512
-                          }
500
+                        this.userId.ids = this.selectArr;
501
+                        this.orderDeptHandler(true);
502
+                      }else if(res.deptHandoverType && res.deptHandoverType.value == 'clinicalWaste'){
503
+                        // 医废
504
+                        uni.navigateTo({
505
+                          url: `/pages/medicalWaste/medicalWasteSignIn/medicalWasteSignIn?code=${data.code}&deptName=${res.deptName}&deptId=${res.deptId}`,
506
+                        });
507
+                      }else if(res.sign === 'patientIntelligentScan'){
508
+                        // 患者陪检和患者其他服务智能扫码
509
+                        uni.navigateTo({
510
+                          url: `/pages/newSendBack/sendBackOrder/sendBackOrder?deptId=${res.deptId}&code=${data.code}`,
511
+                        });
512
+                      }else{
513
+                        uni.navigateTo({
514
+                          url: `../scanning_all/scanning_all?infoDATA=${encodeURIComponent(
515
+                          JSON.stringify(infoDATA)
516
+                        )}&code=${data.code}&deptName=${res.deptName}&deptId=${res.deptId}`,
517
+                        });
518
+                      }
519
+                    } else if (res.type == 'drugsBag') {
520
+                      if (res.drugsBagType == 'drugsJpbag' || res.drugsBagType == 'drugsWestern' || res.drugsBagType == 'drugsReturn' || res.drugsBagType == 'drugsPoison' || res.drugsBagType == 'drugsHerbal') {
521
+                        //新药品-扫静配|西药|退药|毒麻|中草药
522
+                        if(res.orderId){
523
+                          // 有工单
524
+                          this.getInfo(res, code);
513 525
                         }else{
514
-                          //扫药包码
526
+                          // 没有工单,进入起点科室流程
515 527
                           uni.navigateTo({
516
-                            url: `/pages/scanning_drug/scanning_drug?drugsBagId=${res.drugsBagId}&drugsBagBatchNo=${res.drugsBagBatchNo}`,
528
+                            url: `/pages/newDrug/createOrder/createOrder?drugsBagType=${res.drugsBagType}&drugsBagId=${res.drugsBagId}&type=build`,
517 529
                           });
518 530
                         }
519
-                      } else if (res.type == 'nucleicAcid') {
520
-                        //扫核酸码
531
+                      }else{
532
+                        //扫药包
521 533
                         uni.navigateTo({
522
-                          url: `/pages/scanning_nucleicAcid/scanning_nucleicAcid?qrcode=${data.code}`,
534
+                          url: `/pages/scanning_drug/scanning_drug?drugsBagId=${res.drugsBagId}&drugsBagBatchNo=${res.drugsBagBatchNo}`,
523 535
                         });
524
-                      } else if (res.type == 'blood') {
525
-                        //扫血制品
526
-                        // 判断size,多个则进入新页面选择
527
-                        if(res.size > 1){
528
-                          uni.navigateTo({
529
-                            url: `/pages/bloodSelect/bloodSelect?qrcode=${data.code}&navigateTo=scanning_blood`,
530
-                          });
531
-                        } else {
532
-                          uni.navigateTo({
533
-                            url: `/pages/scanning_blood/scanning_blood?qrcode=${data.code}`,
534
-                          });
535
-                        }
536
-                      } else if (res.type == 'receiveOrder') {
537
-                        //扫快捷接单
538
-                        uni.showModal({
539
-                          title: "提示",
540
-                          content: `您本次接单包括${res.names.join('、')},一共含有${res.data.length}个工单,是否确认接单?`,
541
-                          success: function(result) {
542
-                            if (result.confirm) {
543
-                              uni.showLoading({
544
-                                title: "加载中",
545
-                                mask: true,
546
-                              });
547
-                              post("/workerOrder/receiveOrders", {ids: res.data.toString()}).then((result) => {
548
-                                uni.hideLoading();
549
-                                if (result.status == 200) {
550
-                                  uni.showModal({
551
-                                    title: "提示",
552
-                                    content: `本次接单包括${res.names.join('、')},${res.data.length}个工单已接单完成`,
553
-                                    showCancel: false,
554
-                                    success: function(res) {
555
-                                      if (res.confirm) {
556
-                                        console.log("用户点击确定");
557
-                                        uni.redirectTo({
558
-                                          url: "../receiptpage/receiptpage",
559
-                                        });
560
-                                      } else if (res.cancel) {
561
-                                        console.log("用户点击取消");
562
-                                      }
563
-                                    },
564
-                                  });
565
-                                } else {
566
-                                  uni.showToast({
567
-                                    icon: "none",
568
-                                    title: result.msg || "接口获取数据失败!",
569
-                                  });
570
-                                }
571
-                              });
572
-                            } else if (result.cancel) {
573
-                              console.log("用户点击取消");
574
-                            }
575
-                          },
536
+                      }
537
+                    } else if (res.type == 'nucleicAcid') {
538
+                      //扫核酸码
539
+                      uni.navigateTo({
540
+                        url: `/pages/scanning_nucleicAcid/scanning_nucleicAcid?qrcode=${data.code}`,
541
+                      });
542
+                    } else if (res.type == 'blood') {
543
+                      //扫血制品
544
+                      // 判断size,多个则进入新页面选择
545
+                      if(res.size > 1){
546
+                        uni.navigateTo({
547
+                          url: `/pages/bloodSelect/bloodSelect?qrcode=${data.code}&navigateTo=scanning_blood`,
576 548
                         });
577
-                      } else if (res.type == 'bloodTake') {
578
-                        if(res.data){
579
-                          //新血制品-扫科室
580
-                          uni.navigateTo({
581
-                            url: `/pages/newBlood/startOrderSignBlood/startOrderSignBlood?deptId=${res.deptId}&deptName=${res.deptName}&taskTypeId=${res.taskTypeId}`,
582
-                          });
583
-                        }else{
584
-                          // 走type是dept的流程
585
-                          // 扫描科室码
586
-                          // code: data.code //二维码
587
-                          let infoDATA = res.data;
588
-                          console.log(infoDATA)
589
-                          // 判断是否是标本配送,并且仅仅只有这一种业务类型,默认全选,并跳转到下一步;
590
-                          // 判断是否是标本轮巡 ,并且仅仅只有这一种业务类型,并且只有一个工单,默认选中,并跳转到下一步;
591
-                          if(Object.keys(infoDATA).length === 1 && (infoDATA.specimen || (infoDATA.specimenPlan && infoDATA.specimenPlan.length === 1))){
592
-                            this.infoDATA = infoDATA;
593
-                            this.workData = infoDATA.specimen || infoDATA.specimenPlan;
594
-                            this.tabType = infoDATA.specimen ? 'specimen' : 'specimenPlan';
595
-                            this.code = data.code;
596
-                            this.selectArr = [];
597
-                            for (var i = 0; i < this.workData.length; i++) {
598
-                              this.selectArr.push(this.workData[i].id);
599
-                            }
600
-                            this.userId.ids = this.selectArr;
601
-                            this.orderDeptHandler(true);
602
-                          }else{
603
-                            uni.navigateTo({
604
-                              url: `../scanning_all/scanning_all?infoDATA=${encodeURIComponent(
605
-                              JSON.stringify(infoDATA)
606
-                            )}&code=${data.code}&deptName=${res.deptName}&deptId=${res.deptId}`,
549
+                      } else {
550
+                        uni.navigateTo({
551
+                          url: `/pages/scanning_blood/scanning_blood?qrcode=${data.code}`,
552
+                        });
553
+                      }
554
+                    } else if (res.type == 'receiveOrder') {
555
+                      //扫快捷接单
556
+                      uni.showModal({
557
+                        title: "提示",
558
+                        content: `您本次接单包括${res.names.join('、')},一共含有${res.data.length}个工单,是否确认接单?`,
559
+                        success: function(result) {
560
+                          if (result.confirm) {
561
+                            uni.showLoading({
562
+                              title: "加载中",
563
+                              mask: true,
607 564
                             });
565
+                            post("/workerOrder/receiveOrders", {ids: res.data.toString()}).then((result) => {
566
+                              uni.hideLoading();
567
+                              if (result.status == 200) {
568
+                                uni.showModal({
569
+                                  title: "提示",
570
+                                  content: `本次接单包括${res.names.join('、')},${res.data.length}个工单已接单完成`,
571
+                                  showCancel: false,
572
+                                  success: function(res) {
573
+                                    if (res.confirm) {
574
+                                      console.log("用户点击确定");
575
+                                      uni.redirectTo({
576
+                                        url: "../receiptpage/receiptpage",
577
+                                      });
578
+                                    } else if (res.cancel) {
579
+                                      console.log("用户点击取消");
580
+                                    }
581
+                                  },
582
+                                });
583
+                              } else {
584
+                                uni.showToast({
585
+                                  icon: "none",
586
+                                  title: result.msg || "接口获取数据失败!",
587
+                                });
588
+                              }
589
+                            });
590
+                          } else if (result.cancel) {
591
+                            console.log("用户点击取消");
608 592
                           }
609
-                        }
610
-                      } else if(res.type == 'clinicalWaste'){
611
-                        // 医废
612
-                        if(res.wasteDetails){
613
-                          uni.navigateTo({
614
-                            url: `/pages/medicalWaste/medicalWasteDetail/medicalWasteDetail?qrcode=${res.code}`,
615
-                          });
616
-                        }else{
617
-                          uni.navigateTo({
618
-                            url: `/pages/medicalWaste/medicalWasteBind/medicalWasteBind?qrcode=${res.code}`,
619
-                          });
620
-                        }
621
-                      }
622
-                    } else {
623
-                      if(res.bigScanSpecialMsg){
593
+                        },
594
+                      });
595
+                    } else if(res.type == 'clinicalWaste'){
596
+                      // 医废
597
+                      if(res.wasteDetails){
624 598
                         uni.navigateTo({
625
-                          url: `../scanning_big_Result/scanning_big_Result?msg=${res.msg || ''}&qrcode=${this.currentCode}&bigScanSpecialMsg=${encodeURIComponent(JSON.stringify(res.bigScanSpecialMsg))}`,
599
+                          url: `/pages/medicalWaste/medicalWasteDetail/medicalWasteDetail?qrcode=${res.code}`,
626 600
                         });
627 601
                       }else{
628 602
                         uni.navigateTo({
629
-                          url: `../scanning_Result/scanning_Result?status=${res.status}&msg=${res.msg}&qrcode=${this.currentCode}`,
603
+                          url: `/pages/medicalWaste/medicalWasteBind/medicalWasteBind?qrcode=${res.code}`,
630 604
                         });
631 605
                       }
632 606
                     }
633
-                  });
634
-              } else {
635
-                uni.hideLoading();
636
-                uni.showToast({
637
-                  icon: "none",
638
-                  title: result.info || "接口获取数据失败!",
607
+                  } else {
608
+                    if(res.bigScanSpecialMsg){
609
+                      uni.navigateTo({
610
+                        url: `../scanning_big_Result/scanning_big_Result?msg=${res.msg || ''}&qrcode=${this.currentCode}&bigScanSpecialMsg=${encodeURIComponent(JSON.stringify(res.bigScanSpecialMsg))}`,
611
+                      });
612
+                    }else{
613
+                      uni.navigateTo({
614
+                        url: `../scanning_Result/scanning_Result?status=${res.status}&msg=${res.msg}&qrcode=${this.currentCode}`,
615
+                      });
616
+                    }
617
+                  }
639 618
                 });
640
-              }
641
-            })
642
-        }).catch(err => {
643
-          this.SMFlag = true;
644
-        });
619
+            } else {
620
+              uni.hideLoading();
621
+              uni.showToast({
622
+                icon: "none",
623
+                title: result.info || "接口获取数据失败!",
624
+              });
625
+            }
626
+          })
645 627
       },
646 628
     },
647 629
     onShow() {

+ 8 - 6
components/handViewDrugsBag/handViewDrugsBag.vue

@@ -10,7 +10,7 @@
10 10
             {{name}}:
11 11
           </view>
12 12
           <view class="uni-list-cell-db">
13
-            <input class="uni-input" auto-focus="true" :placeholder="'请填写'+name" v-model="account"
13
+            <input class="uni-input" auto-focus="true" :placeholder="'请填写'+name" placeholder-style="text-align:left;" v-model="account"
14 14
               @input="bindPickerChange($event)" />
15 15
           </view>
16 16
         </view>
@@ -117,7 +117,7 @@
117 117
         type: Object,
118 118
         default: () => {
119 119
           return {
120
-            ok: "确",
120
+            ok: "确",
121 121
             cancel: "取消",
122 122
           };
123 123
         },
@@ -196,7 +196,7 @@
196 196
     z-index: 999;
197 197
 
198 198
     .uni-list-cell {
199
-      width: 90%;
199
+      width: 100%;
200 200
       display: flex;
201 201
       flex-direction: row;
202 202
       justify-content: space-evenly;
@@ -205,16 +205,18 @@
205 205
       margin-top: 32rpx;
206 206
 
207 207
       .uni-list-cell-left {
208
-        flex: 3;
209 208
         font-size: 32rpx;
210 209
         color: #666;
210
+        text-align: left;
211
+        padding-left: 24rpx;
211 212
       }
212 213
 
213 214
       .uni-list-cell-db {
214 215
         border: 1px solid #e5e9ed;
215 216
         background-color: #fff;
216
-        padding: 16rpx 0;
217
-        flex: 5;
217
+        padding: 16rpx;
218
+        flex: 1;
219
+        margin-right: 24rpx;
218 220
       }
219 221
 
220 222
       .uni-list-cell-db-text {

+ 322 - 0
components/handViewPatient/handViewPatient.vue

@@ -0,0 +1,322 @@
1
+<template>
2
+  <view class="changeHospital" v-show="disjunctor">
3
+    <view class="changeHospital__wrap">
4
+      <view class="changeHospital__header" v-if="title">
5
+        {{ title }}
6
+      </view>
7
+      <view class="changeHospital__article">
8
+        <view class="uni-list-cell">
9
+          <view class="uni-list-cell-left">
10
+            {{name}}:
11
+          </view>
12
+          <view class="uni-list-cell-db">
13
+            <input class="uni-input" auto-focus="true" :placeholder="'请填写'+name" v-model="account"
14
+              @input="bindPickerChange($event)" />
15
+          </view>
16
+        </view>
17
+        <view class="uni-list-cell">
18
+          <view class="uni-list-cell-left">
19
+            患者姓名:
20
+          </view>
21
+          <view class="uni-list-cell-db-text">
22
+            <text v-show="!loading">{{patientDTO.patientName||'无'}}</text>
23
+            <view class="sk-circle" v-show="loading">
24
+              <view class="sk-circle-dot"></view>
25
+              <view class="sk-circle-dot"></view>
26
+              <view class="sk-circle-dot"></view>
27
+              <view class="sk-circle-dot"></view>
28
+              <view class="sk-circle-dot"></view>
29
+              <view class="sk-circle-dot"></view>
30
+              <view class="sk-circle-dot"></view>
31
+              <view class="sk-circle-dot"></view>
32
+              <view class="sk-circle-dot"></view>
33
+              <view class="sk-circle-dot"></view>
34
+              <view class="sk-circle-dot"></view>
35
+              <view class="sk-circle-dot"></view>
36
+            </view>
37
+          </view>
38
+        </view>
39
+      </view>
40
+      <view class="changeHospital__footer">
41
+        <view v-if="operate.ok" class="changeHospital__ok" @click="ok" hover-class="seimin-btn-hover">
42
+          {{ operate.ok || "" }}
43
+        </view>
44
+        <view v-if="operate.cancel" class="changeHospital__cancel" @click="cancel" hover-class="seimin-btn-hover">
45
+          {{ operate.cancel || "" }}
46
+        </view>
47
+      </view>
48
+    </view>
49
+  </view>
50
+</template>
51
+
52
+<script>
53
+  import {
54
+    post
55
+  } from "../../http/http.js";
56
+  export default {
57
+    data() {
58
+      return {
59
+        cValue: '', //当前输入的内容
60
+        loading: false,
61
+        userData: null,
62
+        hosId: null,
63
+        timer: null,
64
+        patientDTO: {}, //发药单对象
65
+        account: '',
66
+      };
67
+    },
68
+    watch: {
69
+      disjunctor(newValue) {
70
+        if (newValue && this.operate.know == "知道了") {
71
+          this.time = 5;
72
+          this.timer = setInterval(() => {
73
+            this.time--;
74
+            if (this.time <= 0) {
75
+              clearInterval(this.timer);
76
+              this.know();
77
+            }
78
+          }, 1000);
79
+        }
80
+      },
81
+    },
82
+    props: {
83
+      // 显示隐藏
84
+      disjunctor: {
85
+        type: Boolean,
86
+        default: false,
87
+      },
88
+      // 标题
89
+      title: {
90
+        type: String,
91
+        default: "提示",
92
+      },
93
+      // 操作按钮文字
94
+      operate: {
95
+        type: Object,
96
+        default: () => {
97
+          return {
98
+            ok: "确认",
99
+            cancel: "取消",
100
+          };
101
+        },
102
+      },
103
+      name: {
104
+        type: String,
105
+        default: '患者住院号'
106
+      }
107
+    },
108
+    methods: {
109
+      //修改picker的值
110
+      bindPickerChange(e) {
111
+        this.patientDTO = {};
112
+        this.loading = true;
113
+        this.cValue = e.target.value;
114
+        clearTimeout(this.timer);
115
+        if (this.cValue.length <= 4) {
116
+          this.patientDTO = {};
117
+          this.loading = false;
118
+          return;
119
+        }
120
+        this.timer = setTimeout(() => {
121
+          let nAccount = e.target.value;
122
+          post("/patient/patientByCode ", {
123
+            "code": e.target.value,
124
+          }).then(result => {
125
+            if (result.status == 200) {
126
+              if (this.cValue === nAccount) {
127
+                if (result.data) {
128
+                  //有值
129
+                  this.patientDTO = result.data;
130
+                } else {
131
+                  // 没值
132
+                  this.patientDTO = {};
133
+                }
134
+                this.loading = false;
135
+              }
136
+            } else {
137
+              this.patientDTO = {};
138
+              this.loading = false;
139
+            }
140
+          }).catch(err=>{
141
+            this.patientDTO = {};
142
+            this.loading = false;
143
+          })
144
+        }, 500)
145
+      },
146
+      // 确定
147
+      ok() {
148
+        this.$emit("ok", this.patientDTO);
149
+      },
150
+      // 取消
151
+      cancel() {
152
+        this.$emit("cancel");
153
+      },
154
+    },
155
+    created() {
156
+      this.hosId = uni.getStorageSync('userData').user.currentHospital.id;
157
+    }
158
+  };
159
+</script>
160
+
161
+<style lang="less" scoped>
162
+  .changeHospital {
163
+    position: fixed;
164
+    left: 0;
165
+    right: 0;
166
+    top: 0;
167
+    bottom: 0;
168
+    background-color: rgba(0, 0, 0, 0.2);
169
+    z-index: 999;
170
+
171
+    .uni-list-cell {
172
+      width: 90%;
173
+      display: flex;
174
+      flex-direction: row;
175
+      justify-content: space-evenly;
176
+      align-items: center;
177
+      text-align: center;
178
+      margin-top: 32rpx;
179
+
180
+      .uni-list-cell-left {
181
+        flex: 3;
182
+        font-size: 32rpx;
183
+        color: #666;
184
+      }
185
+
186
+      .uni-list-cell-db {
187
+        border: 1px solid #e5e9ed;
188
+        background-color: #fff;
189
+        padding: 16rpx 0;
190
+        flex: 5;
191
+      }
192
+
193
+      .uni-list-cell-db-text {
194
+        flex: 5;
195
+        text-align: left;
196
+      }
197
+    }
198
+
199
+    .changeHospital__wrap {
200
+      width: 90vw;
201
+      position: absolute;
202
+      left: 50%;
203
+      top: 50%;
204
+      transform: translate(-50%, -50%);
205
+      background-color: #fff;
206
+      border-radius: 12rpx;
207
+      color: #666;
208
+
209
+      .changeHospital__header {
210
+        font-size: 36rpx;
211
+        color: #000;
212
+        height: 84rpx;
213
+        display: flex;
214
+        justify-content: center;
215
+        align-items: center;
216
+      }
217
+
218
+      .changeHospital__article {
219
+        width: 90%;
220
+        margin: 0 auto 25rpx;
221
+        padding: 48rpx 0;
222
+        background-color: rgb(249, 250, 251);
223
+        border: 2rpx solid rgb(229, 233, 237);
224
+        border-radius: 12rpx;
225
+        box-sizing: border-box;
226
+        display: flex;
227
+        flex-direction: column;
228
+        justify-content: center;
229
+        align-items: center;
230
+
231
+        &.p0 {
232
+          padding: 0;
233
+        }
234
+
235
+        .changeHospital__icon {
236
+          font-size: 138rpx;
237
+          margin-bottom: 32rpx;
238
+
239
+          &.changeHospital__icon--success {
240
+            color: rgb(52, 179, 73);
241
+          }
242
+
243
+          &.changeHospital__icon--warn {
244
+            color: rgb(245, 165, 35);
245
+          }
246
+
247
+          &.changeHospital__icon--error {
248
+            color: rgb(255, 58, 82);
249
+          }
250
+        }
251
+
252
+        .changeHospital__content {
253
+          font-size: 36rpx;
254
+        }
255
+
256
+        .changeHospital__info {
257
+          font-size: 32rpx;
258
+          color: rgb(102, 102, 102);
259
+        }
260
+
261
+        .specialCloseFlag {
262
+          width: 90%;
263
+          height: 100%;
264
+          padding: 16rpx;
265
+        }
266
+
267
+        .radio-wrap {
268
+          .radio-item {
269
+            margin-top: 16rpx;
270
+
271
+            /deep/ .uni-radio-input-checked {
272
+              background-color: #49b856 !important;
273
+              border-color: #49b856 !important;
274
+            }
275
+          }
276
+        }
277
+      }
278
+
279
+      .changeHospital__footer {
280
+        box-sizing: border-box;
281
+        height: 100rpx;
282
+        border-top: 2rpx solid rgb(229, 233, 237);
283
+        display: flex;
284
+        align-items: center;
285
+
286
+        view {
287
+          height: 100%;
288
+          display: flex;
289
+          align-items: center;
290
+          justify-content: center;
291
+          font-size: 36rpx;
292
+          color: rgb(102, 102, 102);
293
+          position: relative;
294
+
295
+          &:nth-of-type(2)::before {
296
+            content: "";
297
+            position: absolute;
298
+            left: 0;
299
+            bottom: 0;
300
+            width: 2rpx;
301
+            height: 87rpx;
302
+            background-color: rgb(229, 233, 237);
303
+          }
304
+        }
305
+
306
+        .changeHospital__ok {
307
+          flex: 1;
308
+          color: rgb(73, 184, 86);
309
+        }
310
+
311
+        .changeHospital__cancel {
312
+          flex: 1;
313
+        }
314
+
315
+        .changeHospital__know {
316
+          flex: 1;
317
+          color: rgb(73, 184, 86);
318
+        }
319
+      }
320
+    }
321
+  }
322
+</style>

+ 1 - 1
components/uni-datetime-picker/uni-datetime-picker.vue

@@ -836,7 +836,7 @@
836 836
 		overflow: hidden;
837 837
 		flex: 1;
838 838
 		line-height: 1;
839
-		font-size: 14px;
839
+		font-size: 12px;
840 840
 		height: 35px;
841 841
 		display: flex;
842 842
 		align-items: center;

+ 8 - 0
main.js

@@ -46,6 +46,14 @@ Vue.filter('formatDate', function(timestamp, format){
46 46
     return '';
47 47
   }
48 48
 })
49
+// 日期过滤器(去掉秒)
50
+Vue.filter('filterSecondDate', function(dateStr){
51
+  if(dateStr && dateStr.length === 19){
52
+    return dateStr.slice(0, -3);
53
+  }else{
54
+    return dateStr;
55
+  }
56
+})
49 57
 App.mpType = 'app'
50 58
 
51 59
 const app = new Vue({

+ 2 - 1
manifest.json

@@ -1,5 +1,6 @@
1 1
 {
2
-    "name" : "病理全流程",
2
+    /* "name" : "病理全流程", */
3
+    "name" : "",
3 4
     "appid" : "__UNI__9F2011E",
4 5
     "description" : "",
5 6
     "versionName" : "1.11",

+ 29 - 0
package-lock.json

@@ -10,6 +10,7 @@
10 10
       "license": "ISC",
11 11
       "dependencies": {
12 12
         "big.js": "^6.2.1",
13
+        "compressorjs": "^1.2.1",
13 14
         "crypto-js": "^4.1.1",
14 15
         "dayjs": "^1.11.10",
15 16
         "js-base64": "^2.6.4",
@@ -57,6 +58,12 @@
57 58
         "url": "https://opencollective.com/bigjs"
58 59
       }
59 60
     },
61
+    "node_modules/blueimp-canvas-to-blob": {
62
+      "version": "3.29.0",
63
+      "resolved": "https://registry.npmmirror.com/blueimp-canvas-to-blob/-/blueimp-canvas-to-blob-3.29.0.tgz",
64
+      "integrity": "sha512-0pcSSGxC0QxT+yVkivxIqW0Y4VlO2XSDPofBAqoJ1qJxgH9eiUDLv50Rixij2cDuEfx4M6DpD9UGZpRhT5Q8qg==",
65
+      "license": "MIT"
66
+    },
60 67
     "node_modules/brace-expansion": {
61 68
       "version": "1.1.11",
62 69
       "resolved": "https://registry.npmmirror.com/brace-expansion/-/brace-expansion-1.1.11.tgz",
@@ -83,6 +90,16 @@
83 90
         "node": ">=10.0.0"
84 91
       }
85 92
     },
93
+    "node_modules/compressorjs": {
94
+      "version": "1.2.1",
95
+      "resolved": "https://registry.npmmirror.com/compressorjs/-/compressorjs-1.2.1.tgz",
96
+      "integrity": "sha512-+geIjeRnPhQ+LLvvA7wxBQE5ddeLU7pJ3FsKFWirDw6veY3s9iLxAQEw7lXGHnhCJvBujEQWuNnGzZcvCvdkLQ==",
97
+      "license": "MIT",
98
+      "dependencies": {
99
+        "blueimp-canvas-to-blob": "^3.29.0",
100
+        "is-blob": "^2.1.0"
101
+      }
102
+    },
86 103
     "node_modules/concat-map": {
87 104
       "version": "0.0.1",
88 105
       "resolved": "https://registry.npmmirror.com/concat-map/-/concat-map-0.0.1.tgz",
@@ -209,6 +226,18 @@
209 226
         "node": ">= 0.10"
210 227
       }
211 228
     },
229
+    "node_modules/is-blob": {
230
+      "version": "2.1.0",
231
+      "resolved": "https://registry.npmmirror.com/is-blob/-/is-blob-2.1.0.tgz",
232
+      "integrity": "sha512-SZ/fTft5eUhQM6oF/ZaASFDEdbFVe89Imltn9uZr03wdKMcWNVYSMjQPFtg05QuNkt5l5c135ElvXEQG0rk4tw==",
233
+      "license": "MIT",
234
+      "engines": {
235
+        "node": ">=6"
236
+      },
237
+      "funding": {
238
+        "url": "https://github.com/sponsors/sindresorhus"
239
+      }
240
+    },
212 241
     "node_modules/is-core-module": {
213 242
       "version": "2.13.1",
214 243
       "resolved": "https://registry.npmmirror.com/is-core-module/-/is-core-module-2.13.1.tgz",

+ 1 - 0
package.json

@@ -15,6 +15,7 @@
15 15
   "license": "ISC",
16 16
   "dependencies": {
17 17
     "big.js": "^6.2.1",
18
+    "compressorjs": "^1.2.1",
18 19
     "crypto-js": "^4.1.1",
19 20
     "dayjs": "^1.11.10",
20 21
     "js-base64": "^2.6.4",

+ 16 - 0
pages.json

@@ -704,6 +704,22 @@
704 704
           "titleNView": false
705 705
         }
706 706
       }
707
+    },
708
+    {
709
+      "path": "pages/newSendBack/sendBackPatient/sendBackPatient", //批量送回患者-添加患者
710
+      "style": {
711
+        "h5": {
712
+          "titleNView": false
713
+        }
714
+      }
715
+    },
716
+    {
717
+      "path": "pages/newSendBack/sendBackOrder/sendBackOrder", //批量送回患者-工单核对
718
+      "style": {
719
+        "h5": {
720
+          "titleNView": false
721
+        }
722
+      }
707 723
     }
708 724
   ],
709 725
   "globalStyle": {

+ 232 - 0
pages/newSendBack/sendBackOrder/sendBackOrder.vue

@@ -0,0 +1,232 @@
1
+<template>
2
+  <view class="Scanning_Result">
3
+    <view class="Scanning_top">
4
+      工单总数量:<text class="green">{{orderList.length}}</text>
5
+    </view>
6
+
7
+    <view class="Scanning_cont">
8
+      <scroll-view scroll-y class="scrollContent">
9
+        <view class="column" v-for="(item, index) in orderList" :key="item.id">
10
+          <view class="top">
11
+            <text class="">
12
+              <text class="orders green">{{index + 1}}</text>
13
+              <text class="gdcode">{{item.gdcode}}</text>
14
+            </text>
15
+            <text class="taskName">{{item.taskType.taskName}}</text>
16
+          </view>
17
+          <view class="bottom">
18
+            <view class="name">备注:</view>
19
+            <view class="value">{{item.workOrderRemark}}</view>
20
+          </view>
21
+          <view class="bottom">
22
+            <view class="name">{{item.patient.patientName}}({{item.patient.residenceNo}})</view>
23
+          </view>
24
+        </view>
25
+      </scroll-view>
26
+    </view>
27
+
28
+    <view class="foot_btn_spe">
29
+      <view class="column">
30
+        <view class="btn" @click="goBack()">取消</view>
31
+        <view class="btn" @click="orderSignAll()" v-if="orderList.length">一键签到</view>
32
+      </view>
33
+    </view>
34
+  </view>
35
+</template>
36
+<script>
37
+  import {
38
+    get,
39
+    post,
40
+    SM,
41
+    webHandle
42
+  } from "@/http/http.js";
43
+  export default {
44
+    data() {
45
+      return {
46
+        hosId: uni.getStorageSync("userData").user.currentHospital.id,
47
+        orderList: [],//工单列表
48
+        queryObj: {}, //路由传递过来的数据
49
+      };
50
+    },
51
+    methods: {
52
+      goBack(){
53
+        uni.navigateBack();
54
+      },
55
+      // 一键签到
56
+      orderSignAll(){
57
+        uni.showModal({
58
+          title: "提示",
59
+          content: "您确定一键签到吗?",
60
+          success: (res) => {
61
+            if (res.confirm) {
62
+              console.log("用户点击确定");
63
+              uni.showLoading({
64
+                mask: true,
65
+                title: '加载中'
66
+              })
67
+              let postData = {
68
+                "deptCode": this.queryObj.code,
69
+                "ids": this.orderList.map(v => v.id),
70
+              };
71
+              console.log(this.orderList);
72
+              post("/workerOrder/handleInsAndTrans", postData).then((res) => {
73
+                console.log(res)
74
+                uni.hideLoading();
75
+                if (res.status == 200) {
76
+                  uni.showToast({
77
+                    icon: 'success',
78
+                    title: '工单签到成功',
79
+                    duration: 2000,
80
+                    mask: true,
81
+                  });
82
+                  setTimeout(() => {
83
+                    uni.navigateTo({
84
+                      url: `/pages/receiptpage/receiptpage`,
85
+                    });
86
+                  }, 2000)
87
+                } else {
88
+                  uni.showToast({
89
+                    icon: "none",
90
+                    title: res.msg || "接口获取数据失败!",
91
+                  });
92
+                }
93
+              })
94
+            } else if (res.cancel) {
95
+              console.log("用户点击取消");
96
+            }
97
+          },
98
+        });
99
+      },
100
+      // 获取工单列表
101
+      getOrderList(){
102
+        uni.showLoading({
103
+          mask: true,
104
+          title: '加载中'
105
+        })
106
+        let postData = {
107
+          "deptId": +this.queryObj.deptId,
108
+        };
109
+
110
+        post("/workerOrder/patientIntelligentScan", postData).then((res) => {
111
+          console.log(res)
112
+          uni.hideLoading();
113
+          if (res.status == 200) {
114
+            this.orderList = res.data || [];
115
+          } else {
116
+            uni.showToast({
117
+              icon: "none",
118
+              title: res.msg || "接口获取数据失败!",
119
+            });
120
+          }
121
+        })
122
+      }
123
+    },
124
+    onLoad(options) {
125
+      console.log(options, "options");
126
+      this.queryObj = options;
127
+      this.getOrderList();
128
+      // #ifdef APP-PLUS
129
+      webHandle("no", "app");
130
+      // #endif
131
+      // #ifdef H5
132
+      webHandle("no", "wx");
133
+      // #endif
134
+    },
135
+  };
136
+</script>
137
+<style lang="less" scoped>
138
+  .green{
139
+    color:#49b856;
140
+  }
141
+  .Scanning_Result {
142
+    background: #EBEBEB;
143
+    display: flex;
144
+    flex-direction: column;
145
+    height: 100vh;
146
+
147
+    .Scanning_top {
148
+      display: flex;
149
+      justify-content: center;
150
+      align-items: center;
151
+      height: 63rpx;
152
+      font-size: 28rpx;
153
+      font-weight: bold;
154
+      background-color: #fff;
155
+      margin-top: 16rpx;
156
+    }
157
+
158
+    .Scanning_cont {
159
+      flex: 1;
160
+      min-height: 0;
161
+      display: flex;
162
+      flex-direction: column;
163
+      .scrollContent{
164
+        flex: 1;
165
+        min-height: 0;
166
+      }
167
+      .column{
168
+        padding: 24rpx;
169
+        font-size: 26rpx;
170
+        margin-top: 16rpx;
171
+        background-color: #fff;
172
+        .top,.bottom{
173
+          display: flex;
174
+          align-items: center;
175
+          .name{
176
+            flex-shrink: 0;
177
+          }
178
+          .value{
179
+            word-break: break-all;
180
+          }
181
+        }
182
+        .top{
183
+          .orders{
184
+            font-size: 28rpx;
185
+            font-weight: bold;
186
+            margin-right: 24rpx;
187
+          }
188
+          .gdcode{
189
+            font-weight: bold;
190
+          }
191
+          .taskName{
192
+            flex: 1;
193
+            text-align: right;
194
+          }
195
+        }
196
+        .bottom{
197
+          margin-top: 16rpx;
198
+        }
199
+      }
200
+    }
201
+
202
+    .foot_btn_spe {
203
+      padding: 24rpx;
204
+      display: flex;
205
+      flex-direction: column;
206
+      align-items: center;
207
+      gap: 24rpx;
208
+      font-weight: bold;
209
+
210
+      .column{
211
+        width: 100%;
212
+        height: 78rpx;
213
+        display: flex;
214
+        align-items: center;
215
+        justify-content: space-between;
216
+        gap: 24rpx;
217
+
218
+        .btn {
219
+          height: 100%;
220
+          flex: 1;
221
+          background: linear-gradient( 90deg, #6FC073 0%, #3DB197 100%);
222
+          color: #fff;
223
+          border-radius: 4rpx;
224
+          font-size: 30rpx;
225
+          display: flex;
226
+          justify-content: center;
227
+          align-items: center;
228
+        }
229
+      }
230
+    }
231
+  }
232
+</style>

+ 405 - 0
pages/newSendBack/sendBackPatient/sendBackPatient.vue

@@ -0,0 +1,405 @@
1
+<template>
2
+  <view class="Scanning_Result">
3
+    <view class="Scanning_top">
4
+      患者总数量:<text class="green">{{patientList.length}}</text>
5
+    </view>
6
+
7
+    <view class="Scanning_cont">
8
+      <scroll-view scroll-y class="scrollContent">
9
+        <view class="column" v-for="(item, index) in patientList" :key="item.id">
10
+          <view class="top">
11
+            <view class="name">姓名:</view>
12
+            <view class="value">{{item.patientName}}</view>
13
+            <text class="orders green">{{index + 1}}</text>
14
+          </view>
15
+          <view class="bottom">
16
+            <view class="name">住院号:</view>
17
+            <view class="value">{{item.residenceNo}}</view>
18
+          </view>
19
+        </view>
20
+      </scroll-view>
21
+    </view>
22
+
23
+    <view class="foot_btn_spe">
24
+      <view class="column">
25
+        <view class="btn" @click="scan()">扫一扫</view>
26
+        <view class="btn" @click="hand_again()">手动录入</view>
27
+      </view>
28
+      <view class="column" v-if="patientList.length">
29
+        <view class="btn" @click="scanDept()">建单</view>
30
+      </view>
31
+    </view>
32
+    <!-- 手动查询患者弹窗 -->
33
+    <handViewPatient v-if="patientModels.disjunctor" :title="patientModels.title"
34
+      :disjunctor="patientModels.disjunctor" @ok="patientOk" @cancel="patientCancel">
35
+    </handViewPatient>
36
+  </view>
37
+</template>
38
+<script>
39
+  import {
40
+    get,
41
+    post,
42
+    SM,
43
+    webHandle
44
+  } from "@/http/http.js";
45
+  export default {
46
+    data() {
47
+      return {
48
+        hosId: uni.getStorageSync("userData").user.currentHospital.id,
49
+        patientList: [],//患者列表
50
+        queryObj: {}, //路由传递过来的数据
51
+        scanCount: '', //已扫描数量
52
+        SMFlag: true,
53
+        // 手动查询弹窗model
54
+        patientModels: {
55
+          disjunctor: false,
56
+        },
57
+      };
58
+    },
59
+    onShow() {
60
+      this.SMFlag = true;
61
+    },
62
+    methods: {
63
+			// 送回病房-扫描科室
64
+			scanDept() {
65
+			  if (!this.SMFlag) {
66
+			    return;
67
+			  }
68
+			  this.SMFlag = false;
69
+			  let code = "";
70
+			  SM().then((ress1) => {
71
+			    uni.showLoading({
72
+			      title: "加载中",
73
+			      mask: true,
74
+			    });
75
+			    //检验二维码的有效性
76
+			    post("/dept/scanning", {
77
+			      content: ress1,
78
+			    }).then((result) => {
79
+			      this.SMFlag = true;
80
+			      if (result.state == 200 || result.state == 201) {
81
+			        let ress = result.code;
82
+			        if (ress) {
83
+			          code = ress;
84
+			          // 科室扫描
85
+			          let postData = {
86
+			            "type": "query",
87
+			            "qrCode": code
88
+			          };
89
+			          post("/dept/scanChangeDept", postData).then((res) => {
90
+			            uni.hideLoading();
91
+			            if (res.status == 200) {
92
+			              if (res.data) {
93
+			                if(res.data.deptDTO){
94
+			                  this.currentStartDept = res.data.deptDTO;
95
+			                }else{
96
+			                  this.currentStartDept = res.data;
97
+			                }
98
+			                this.buildOrder();
99
+			              } else {
100
+			                uni.hideLoading();
101
+			                uni.showToast({
102
+			                  icon: "none",
103
+			                  title: "请扫描正确的科室码!",
104
+			                });
105
+			              }
106
+			            } else {
107
+			              uni.hideLoading();
108
+			              uni.showToast({
109
+			                icon: "none",
110
+			                title: res.msg || "接口获取数据失败!",
111
+			              });
112
+			            }
113
+			          });
114
+			        }
115
+			      } else {
116
+			        uni.hideLoading();
117
+			        uni.showToast({
118
+			          icon: "none",
119
+			          title: result.info || "接口获取数据失败!",
120
+			        });
121
+			      }
122
+			    });
123
+			  }).catch(err => {
124
+			    this.SMFlag = true;
125
+			  });
126
+			},
127
+      // 手动查询-确认
128
+      patientOk(data) {
129
+        console.log(data);
130
+        if (!data.id) {
131
+          //没有查询到患者
132
+          uni.showModal({
133
+            title: '提示',
134
+            content: "没有查询到患者!",
135
+            showCancel: false,
136
+            success: function(res) {
137
+              if (res.confirm) {
138
+                console.log('用户点击确定');
139
+              } else if (res.cancel) {
140
+                console.log('用户点击取消');
141
+              }
142
+            }
143
+          });
144
+          return;
145
+        }
146
+        this.patientModels.disjunctor = false;
147
+        this.hand_scanning_common(data.residenceNo, 'hand');
148
+      },
149
+      // 手动查询-取消
150
+      patientCancel() {
151
+        this.patientModels.disjunctor = false;
152
+      },
153
+      // 手动查询弹窗
154
+      showHandViewDrugsbag() {
155
+        this.patientModels = {
156
+          title: '填写患者住院号',
157
+          disjunctor: true,
158
+        }
159
+      },
160
+      // 手动录入
161
+      hand_again() {
162
+        this.showHandViewDrugsbag();
163
+      },
164
+      // 核对交接
165
+      buildOrder(){
166
+        uni.showModal({
167
+          title: "提示",
168
+          content: "您确定建单吗?",
169
+          success: (res) => {
170
+            if (res.confirm) {
171
+              console.log("用户点击确定");
172
+              uni.showLoading({
173
+                mask: true,
174
+                title: '加载中'
175
+              })
176
+              let userId = uni.getStorageSync("userData").user.id;
177
+              let postData = {
178
+                "workOrder": [],
179
+              };
180
+              console.log(this.patientList);
181
+              this.patientList.forEach(v => {
182
+                postData.workOrder.push({
183
+                  sourceId: 4,
184
+                  "hosId": this.hosId,
185
+                  "startDept": {
186
+                    "id": this.currentStartDept.id
187
+                  },
188
+                  "createDept": this.currentStartDept.id,
189
+                  "patient": {
190
+                    "patientCode": v.patientCode
191
+                  },
192
+                  "worker": {
193
+                    "id": userId
194
+                  },
195
+                })
196
+              })
197
+              post("/workerOrder/returnSickRoom", postData).then((res) => {
198
+                console.log(res)
199
+                uni.hideLoading();
200
+                if (res.status == 200) {
201
+                  uni.showToast({
202
+                    icon: 'success',
203
+                    title: '建单成功',
204
+                    duration: 2000,
205
+                    mask: true,
206
+                  });
207
+                  setTimeout(() => {
208
+                    uni.navigateTo({
209
+                      url: `/pages/receiptpage/receiptpage`,
210
+                    });
211
+                  }, 2000)
212
+                } else {
213
+                  uni.showToast({
214
+                    icon: "none",
215
+                    title: res.msg || "接口获取数据失败!",
216
+                  });
217
+                }
218
+              })
219
+            } else if (res.cancel) {
220
+              console.log("用户点击取消");
221
+            }
222
+          },
223
+        });
224
+      },
225
+      // 扫一扫
226
+      scan(isFlag = false) {
227
+        if (!this.SMFlag) {
228
+          return;
229
+        }
230
+        this.SMFlag = false;
231
+        SM().then((ress1) => {
232
+          this.hand_scanning_common(ress1, 'scan', isFlag);
233
+        }).catch(err => {
234
+          this.SMFlag = true;
235
+        });
236
+      },
237
+      // 手动输入和扫码公共方法
238
+      hand_scanning_common(ress1, type, isFlag = false) {
239
+        // ----------------
240
+        uni.showLoading({
241
+          title: "加载中",
242
+          mask: true,
243
+        });
244
+        //检验二维码的有效性
245
+        post("/dept/scanning", {
246
+          content: ress1,
247
+        }).then((result) => {
248
+          this.SMFlag = true;
249
+          if (result.state == 200 || result.state == 201) {
250
+            let codes = result.code;
251
+            if (codes) {
252
+              this.input_common(ress1, type, isFlag);
253
+            } else {
254
+              uni.hideLoading();
255
+            }
256
+          } else {
257
+            uni.hideLoading();
258
+            uni.showToast({
259
+              icon: "none",
260
+              title: result.info || "接口获取数据失败!",
261
+            });
262
+          }
263
+        });
264
+        // ------------------------------
265
+      },
266
+      // 将患者添加到患者列表
267
+      input_common(ress1, type, isFlag = false){
268
+        uni.showLoading({
269
+          title: "加载中",
270
+          mask: true,
271
+        });
272
+        post("/patient/patientByCode ", { code: ress1 }).then((ress) => {
273
+          uni.hideLoading();
274
+          if (ress.status == 200) {
275
+            let flag = this.patientList.find(v => v.id == ress.data.id);
276
+            if(flag){
277
+              uni.showToast({
278
+                icon: "none",
279
+                title: "患者已存在!",
280
+              });
281
+            }else{
282
+              this.patientList.unshift(ress.data);
283
+              uni.showToast({
284
+                icon: "none",
285
+                title: "添加患者成功!",
286
+              });
287
+            }
288
+          } else {
289
+            uni.showToast({
290
+              icon: "none",
291
+              title: ress.msg || "接口获取数据失败!",
292
+            });
293
+          }
294
+        });
295
+      },
296
+    },
297
+    onLoad(options) {
298
+      console.log(options, "options");
299
+      this.queryObj = options;
300
+      this.patientList = [{id: options.patientId, patientName: options.patientName, residenceNo: options.patientResidenceNo, patientCode: options.patientCode}]
301
+      // #ifdef APP-PLUS
302
+      webHandle("no", "app");
303
+      // #endif
304
+      // #ifdef H5
305
+      webHandle("no", "wx");
306
+      // #endif
307
+    },
308
+  };
309
+</script>
310
+<style lang="less" scoped>
311
+  .green{
312
+    color:#49b856;
313
+  }
314
+  .Scanning_Result {
315
+    background: #EBEBEB;
316
+    display: flex;
317
+    flex-direction: column;
318
+    height: 100vh;
319
+
320
+    .Scanning_top {
321
+      display: flex;
322
+      justify-content: center;
323
+      align-items: center;
324
+      height: 63rpx;
325
+      font-size: 28rpx;
326
+      font-weight: bold;
327
+      background-color: #fff;
328
+      margin-top: 16rpx;
329
+    }
330
+
331
+    .Scanning_cont {
332
+      flex: 1;
333
+      min-height: 0;
334
+      display: flex;
335
+      flex-direction: column;
336
+      .scrollContent{
337
+        flex: 1;
338
+        min-height: 0;
339
+      }
340
+      .column{
341
+        padding: 24rpx 64rpx;
342
+        font-size: 26rpx;
343
+        margin-top: 16rpx;
344
+        background-color: #fff;
345
+        .top,.bottom{
346
+          height: 50%;
347
+          display: flex;
348
+          align-items: center;
349
+          .name{
350
+            
351
+          }
352
+          .value{
353
+            flex: 1;
354
+          }
355
+        }
356
+        .top{
357
+          position: relative;
358
+          .orders{
359
+            width: 64rpx;
360
+            text-align: center;
361
+            position: absolute;
362
+            left: -64rpx;
363
+            top: 50%;
364
+            transform: translateY(-50%);
365
+            font-size: 28rpx;
366
+            font-weight: bold;
367
+          }
368
+        }
369
+        .bottom{
370
+          margin-top: 16rpx;
371
+        }
372
+      }
373
+    }
374
+
375
+    .foot_btn_spe {
376
+      display: flex;
377
+      flex-direction: column;
378
+      align-items: center;
379
+      gap: 24rpx;
380
+      font-weight: bold;
381
+      padding: 24rpx;
382
+
383
+      .column{
384
+        width: 100%;
385
+        height: 78rpx;
386
+        display: flex;
387
+        align-items: center;
388
+        justify-content: space-between;
389
+        gap: 24rpx;
390
+
391
+        .btn {
392
+          height: 100%;
393
+          flex: 1;
394
+          background: linear-gradient( 90deg, #6FC073 0%, #3DB197 100%);
395
+          color: #fff;
396
+          border-radius: 4rpx;
397
+          font-size: 30rpx;
398
+          display: flex;
399
+          justify-content: center;
400
+          align-items: center;
401
+        }
402
+      }
403
+    }
404
+  }
405
+</style>

+ 261 - 41
pages/patientInformationInfo/patientInformationInfo.vue

@@ -1,17 +1,16 @@
1 1
 <template>
2 2
 	<view class="patientInformationInfo" v-if="Object.keys(infoDATA).length > 0">
3 3
 		<view class="page_head">
4
-			<view class="title">{{ infoDATA.patientName }}</view>
5
-			<view class="patientCode">{{ infoDATA.residenceNo }}</view>
4
+			<view class="title">{{ infoDATA.patientName }}<text class="patientCode">{{ infoDATA.residenceNo }}</text></view>
6 5
 			<view class="info">
7
-				<view class="bedNum">
6
+				<view :class="(infoDATA.careLevel || infoDATA.illnessState)?'bedNum':'waitingCount'">
8 7
 					<text class="info_h">床号</text>
9
-					<text class="info_b">{{ infoDATA.bedNum || "-" }}</text>
8
+					<text class="info_b">{{ infoDATA.bedNum }}</text>
10 9
 				</view>
11
-				<view :class="infoDATA.careLevel?'bedNum':'waitingCount'">
10
+				<!-- <view :class="(infoDATA.careLevel || infoDATA.illnessState)?'bedNum':'waitingCount'">
12 11
 					<text class="info_h">待检查数</text>
13 12
 					<text class="info_b">{{ infoDATA.watingCount }}</text>
14
-				</view>
13
+				</view> -->
15 14
 				<view class="bedNum" v-if="infoDATA.careLevel">
16 15
 					<text class="info_h">护理等级</text>
17 16
 					<text class="info_b">{{ infoDATA.careLevel.name }}</text>
@@ -22,26 +21,45 @@
22 21
 				</view>
23 22
 			</view>
24 23
 		</view>
25
-		<view class="page_item" v-for="item in infoDATA.inspects" :key="item.id">
26
-			<view class="page_item_info">
27
-				<view class="page_item_info_title">检查项目:<text>{{ item.inspectName || "-" }}</text></view>
28
-				<view class="page_item_info_title">检查科室:<text>{{
29
-            item.execDept ? item.execDept.dept : "-"
30
-          }}</text></view>
31
-				<view class="page_item_info_title btn">预约时间:<text>{{ item.yyTime || "-" }}</text><button
32
-						@click="changeYyTime(item)" v-if="item.inspectState.value == 1 || item.inspectState.value == 30">修改</button></view>
33
-				<view class="page_item_info_title">预约叫号:<text>{{ item.reservationNumber || "-" }}</text></view>
34
-				<view class="page_item_info_title">是否紧急:<text
35
-						:class="{red:item.priority===1||item.priority==='1'}">{{ (item.priority===1||item.priority==='1')?'是':'否' }}</text>
36
-				</view>
37
-			</view>
38
-		</view>
39
-		<view v-if="!infoDATA.inspects || infoDATA.inspects.length == 0" class="zwsj">
24
+    <scroll-view v-if="!isEmpty" scroll-y class="scrollContent">
25
+      <view class="page_item" v-for="(inspects, key, index) in infoDATA.inspectListMap" :key="key">
26
+        <view class="splitLine">
27
+          <view class="splitLineFlex">
28
+            <view class="splitLineBox"></view>
29
+          </view>
30
+          <view>{{key}}</view>
31
+          <view class="splitLineFlex">
32
+            <view class="splitLineBox"></view>
33
+          </view>
34
+        </view>
35
+        <view class="page_item_info" :class="{mt0: i === 0}" v-for="(item, i) in inspects" :key="item.id">
36
+          <view class="page_item_info_title">检查项目:<text class="bold">{{ item.inspectName }}</text></view>
37
+          <view class="page_item_info_title">检查科室:<text>{{ item.execDept ? item.execDept.dept : "" }}</text></view>
38
+          <view class="page_item_info_title btn row">
39
+            <view>预约时间:<text>{{ item.yyTime | filterSecondDate }}</text><text v-if="item.reservationNumber">({{ item.reservationNumber }})</text></view>
40
+            <button @click="changeYyTime(item)" v-if="item.inspectState.value == 1 || item.inspectState.value == 30">修改</button>
41
+          </view>
42
+          <view class="page_item_info_title row">
43
+            <view>是否紧急:<text :class="{red:item.priority===1||item.priority==='1'}">{{ (item.priority===1||item.priority==='1')?'是':'否' }}</text></view>
44
+            <view>状态:<text v-if="item.inspectState">{{ item.inspectState.name }}</text></view>
45
+          </view>
46
+          <view class="buildOrder" @click="build(item)" v-if="!item.gdId&&(item.inspectState.value==1||item.inspectState.value==30)">建单</view>
47
+        </view>
48
+      </view>
49
+    </scroll-view>
50
+		<view v-if="isEmpty" class="zwsj">
40 51
 			<image class="zwsj-img" mode="widthFix" src="../../static/img/zanwushuju.png"></image>
41 52
 			<view class="zwsj-txt">暂无检查信息</view>
42 53
 		</view>
54
+    <view class="toolbar" @click="Scanning()">
55
+      <text class="toolbar-icon newicon newicon-saoma"></text>
56
+      <text class="toolbar-sao">扫一扫</text>
57
+    </view>
43 58
 		<!-- 弹窗 -->
44 59
 		<inspectRemoveModel :title="models1.title" :icon="models1.icon" :disjunctor="models1.disjunctor" :content="models1.content" @know="know1" :operate="models1.operate" @ok="ok1" @cancel="cancel1"></inspectRemoveModel>
60
+    <!-- 弹窗 -->
61
+    <showModel :title="models.title" :icon="models.icon" :disjunctor="models.disjunctor" :content="models.content"
62
+      @ok="ok" @cancel="cancel" @know="know" :operate="models.operate"></showModel>
45 63
 	</view>
46 64
 </template>
47 65
 <script>
@@ -54,15 +72,150 @@
54 72
 	export default {
55 73
 		data() {
56 74
 			return {
75
+        SMFlag: true,
76
+        isEmpty: true,
57 77
 				options: {},
58 78
 				infoDATA: {},
59 79
 				// 弹窗model1
60 80
 				models1: {
61 81
 				  disjunctor: false,
62 82
 				},
83
+        // 建单的对象
84
+        jdItem: {},
85
+        // 弹窗model
86
+        models: {
87
+          disjunctor: false,
88
+        },
63 89
 			};
64 90
 		},
65 91
 		methods: {
92
+      // 建单
93
+      build(data) {
94
+        console.log(data);
95
+        this.jdItem = data;
96
+        this.models = {
97
+          disjunctor: true,
98
+          title: "提示",
99
+          content: `您即将创建【${data.patientName || ""}】患者前往【${
100
+          data.execDept ? data.execDept.dept : ""
101
+        }】进行【${data.inspectName || ""}】检查,您确认吗?`,
102
+          icon: "warn",
103
+          operate: {
104
+            ok: "确定",
105
+            cancel: "取消",
106
+          },
107
+        };
108
+      },
109
+      //建单后知道了
110
+      know() {
111
+        this.models.disjunctor = false;
112
+        this.getInfo(this.jdItem.patientCode);
113
+      },
114
+      //建单确定
115
+      ok() {
116
+        this.models.disjunctor = false;
117
+        let postData = {
118
+          deptId: this.infoDATA.department.id
119
+        };
120
+        let taskId;
121
+        uni.showLoading({
122
+          title: "加载中",
123
+          mask: true,
124
+        });
125
+        post("/nurse/getDeptTaskType", postData).then((result) => {
126
+          if (result.status == 200) {
127
+            let obj = result.data.allTaskTypes.filter(
128
+              (item) => item.associationType.value == "inspect"
129
+            );
130
+            if (obj.length) {
131
+              taskId = obj[0].id;
132
+              let postData = {
133
+                workOrder: {
134
+                  sourceId: 4,
135
+                  taskType: {
136
+                    id: taskId,
137
+                    isHalfInspect: obj[0].isHalfInspect === 1 ? 1 : 0
138
+                  },
139
+                  createDept: this.infoDATA.department.id,
140
+                  startDept: {
141
+                    id: this.infoDATA.department.id
142
+                  },
143
+                  patient: {
144
+                    patientCode: this.jdItem.patientCode
145
+                  },
146
+                  checkList: [{
147
+                    id: this.jdItem.id
148
+                  }],
149
+                  goods: "",
150
+                  worker: {
151
+                    id: uni.getStorageSync("userData").user.id
152
+                  },
153
+                  workerStartOrderFlag: 1,
154
+                },
155
+              };
156
+              //根据检查的紧急度加急
157
+              if (this.jdItem.priority === 1 || this.jdItem.priority === '1') {
158
+                postData.workOrder["urgentDetails"] = {
159
+                  checkStatus: {
160
+                    id: 329
161
+                  },
162
+                  urgentReason: '系统根据检查信息,自动进行加急',
163
+                };
164
+              }
165
+              post("/api/startOrder", postData).then((res) => {
166
+                uni.hideLoading();
167
+                let msg = res.msg;
168
+                let icon = "error";
169
+                if (res.status == 200) {
170
+                  msg = "建单成功";
171
+                  icon = "success";
172
+                }
173
+                this.models = {
174
+                  disjunctor: true,
175
+                  content: msg,
176
+                  icon: icon,
177
+                  operate: {
178
+                    know: "知道了",
179
+                  },
180
+                };
181
+              });
182
+            } else {
183
+              uni.hideLoading();
184
+              this.models = {
185
+                disjunctor: true,
186
+                content: "建单失败,科室未开通!",
187
+                icon: "error",
188
+                operate: {
189
+                  know: "知道了",
190
+                },
191
+              };
192
+            }
193
+          } else {
194
+            uni.hideLoading();
195
+            uni.showToast({
196
+              icon: "none",
197
+              title: result.msg || "接口获取数据失败!",
198
+            });
199
+          }
200
+        });
201
+      },
202
+      //建单取消
203
+      cancel() {
204
+        this.models.disjunctor = false;
205
+      },
206
+      // 扫一扫
207
+      Scanning(qrcodePrefix = '') {
208
+        if (!this.SMFlag) {
209
+          return;
210
+        }
211
+        this.SMFlag = false;
212
+        SM().then((content) => {
213
+          this.SMFlag = true;
214
+          this.getInfo(content);
215
+        }).catch(err => {
216
+          this.SMFlag = true;
217
+        });
218
+      },
66 219
 			// 修改预约时间->知道了
67 220
 			know1() {
68 221
 			  this.models1.disjunctor = false;
@@ -136,16 +289,8 @@
136 289
 				}).then((res) => {
137 290
 					uni.hideLoading();
138 291
 					if (res.status == 200) {
139
-						if (res.data.inspects && Array.isArray(res.data.inspects)) {
140
-							res.data.inspects = res.data.inspects.map(v => {
141
-								if (v.yyTime) {
142
-									let [date, time] = v.yyTime.split(" ");
143
-									v.yyTime = new Date(date).Format('yyyy-MM-dd') + " " + time.slice(0, -
144
-										3);
145
-								}
146
-								return v;
147
-							})
148
-						}
292
+            res.data.inspectListMap = res.data.inspectListMap || {};
293
+            this.isEmpty = Object.keys(res.data.inspectListMap).length === 0;
149 294
 						this.infoDATA = res.data;
150 295
 					} else {
151 296
 						uni.showToast({
@@ -166,13 +311,42 @@
166 311
 			webHandle("no", "wx");
167 312
 			// #endif
168 313
 		},
314
+    onShow() {
315
+      this.SMFlag = true;
316
+    }
169 317
 	};
170 318
 </script>
171
-<style lang="less">
172
-	.patientInformationInfo {
173
-		padding: 0 20rpx;
319
+<style lang="less" scoped>
320
+  .toolbar {
321
+    margin-bottom: 16rpx;
322
+    z-index: 999;
323
+    height: 88rpx;
324
+    display: flex;
325
+    justify-content: center;
326
+    align-items: center;
327
+    box-sizing: border-box;
328
+    border-radius: 4rpx;
329
+    background-color: #E5E8ED;
174 330
 
331
+    .toolbar-icon {
332
+      font-size: 52rpx;
333
+      margin-right: 16rpx;
334
+      color: #07863c;
335
+    }
336
+
337
+    .toolbar-sao {
338
+      font-size: 36rpx;
339
+      color: #333;
340
+    }
341
+  }
342
+	.patientInformationInfo {
343
+    background-color: #F7F7F7;
344
+    display: flex;
345
+    flex-direction: column;
346
+    height: 100vh;
175 347
 		.zwsj {
348
+      flex: 1;
349
+      min-height: 0;
176 350
 			text-align: center;
177 351
 
178 352
 			.zwsj-img {
@@ -198,9 +372,8 @@
198 372
 			}
199 373
 
200 374
 			.patientCode {
201
-				padding-bottom: 12rpx;
375
+				margin-left: 12rpx;
202 376
 				font-size: 28rpx;
203
-				text-align: center;
204 377
 			}
205 378
 
206 379
 			.info {
@@ -245,20 +418,58 @@
245 418
 			}
246 419
 		}
247 420
 
421
+    .scrollContent{
422
+      flex: 1;
423
+      min-height: 0;
424
+    }
248 425
 		.page_item {
249
-			margin-top: 16rpx;
250
-			margin-bottom: 16rpx;
251
-			background: #fff;
426
+			// margin-bottom: 10rpx;
252 427
 			border-radius: 8rpx;
253 428
 			overflow: hidden;
254
-			padding: 0 16rpx;
255
-			border: 2rpx solid #e5e9ed;
429
+
430
+      .splitLine{
431
+        height: 50rpx;
432
+        display: flex;
433
+        align-items: center;
434
+        justify-content: center;
435
+        color: #8F8F8F;
436
+        .splitLineFlex{
437
+          flex: 1;
438
+          display: flex;
439
+          align-items: center;
440
+          justify-content: center;
441
+          .splitLineBox{
442
+            width: calc(100% - 48rpx);
443
+            height: 1rpx;
444
+            background-color: #8F8F8F;
445
+          }
446
+        }
447
+      }
256 448
 
257 449
 			.page_item_info {
450
+        margin-top: 10rpx;
258 451
 				padding: 20rpx 16rpx;
259 452
 				text-align: left;
260 453
 				line-height: 60rpx;
261 454
 				font-size: 30rpx;
455
+        background: #fff;
456
+
457
+        &.mt0{
458
+          margin-top: 0;
459
+        }
460
+
461
+        .buildOrder{
462
+          width: 258rpx;
463
+          height: 72rpx;
464
+          background: #49B856;
465
+          border-radius: 6rpx;
466
+          margin: 0 auto;
467
+          color: #FFFFFF;
468
+          display: flex;
469
+          align-items: center;
470
+          justify-content: center;
471
+          font-size: 30rpx;
472
+        }
262 473
 
263 474
 				.page_item_info_title {
264 475
 					font-weight: 700;
@@ -273,6 +484,11 @@
273 484
 							margin: 0;
274 485
 						}
275 486
 					}
487
+          &.row{
488
+            display: flex;
489
+            align-items: center;
490
+            justify-content: space-between;
491
+          }
276 492
 
277 493
 					text {
278 494
 						font-weight: normal;
@@ -280,6 +496,10 @@
280 496
 						&.red {
281 497
 							color: red;
282 498
 						}
499
+            
500
+            &.bold{
501
+              font-weight: 700;
502
+            }
283 503
 					}
284 504
 				}
285 505
 			}

+ 2 - 2
pages/patientInformationList/patientInformationList.vue

@@ -241,7 +241,7 @@
241 241
         })
242 242
         let userId = uni.getStorageSync("userData").user.id;
243 243
         let postData = {
244
-          "workOrder": {
244
+          "workOrder": [{
245 245
             sourceId: 4,
246 246
             "hosId": this.hosId,
247 247
             "startDept": {
@@ -254,7 +254,7 @@
254 254
             "worker": {
255 255
               "id": userId
256 256
             },
257
-          },
257
+          }],
258 258
           "inspectMode": this.selectRadio.length > 0 ? this.selectRadio[0] : undefined,
259 259
         };
260 260
         console.log(postData);

+ 12 - 7
pages/receipt_infopage/receipt_infopage.vue

@@ -355,7 +355,8 @@
355 355
       <!-- 如果不是静配,药配,标本配送,标本轮巡,万能交接 -->
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
-        <view :class="[infoDATA.taskType.specialCloseButton == 1 ? 'btn3' : 'btn2']" v-if="
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' &&
@@ -365,15 +366,15 @@
365 366
           !(infoDATA.taskType.associationType.value == 'other' && (infoDATA.gdState.value == 4 && infoDATA.taskType.carryingCourses[0].actionsSwitch || infoDATA.gdState.value == 5 && infoDATA.taskType.carryingCourses[1].actionsSwitch))
366 367
         " hover-class="seimin-btn-hover">
367 368
           <smallScreen :sData="infoDATA" :sType="1">扫码</smallScreen>
368
-        </view>
369
+        </view> -->
369 370
         <!-- 其他临床服务-完成工单-待到达 -->
370 371
         <view v-if="infoDATA.taskType.associationType.value == 'other' && infoDATA.gdState.value == 4 && infoDATA.taskType.carryingCourses[0].actionsSwitch" class="btn2 page_item_btn" @click="otherCompleteOrder(infoDATA)" hover-class="seimin-btn-hover">确认到达</view>
371 372
         <!-- 其他临床服务-完成工单-待送达 -->
372 373
         <view v-if="infoDATA.taskType.associationType.value == 'other' && infoDATA.gdState.value == 5 && infoDATA.taskType.carryingCourses[1].actionsSwitch" class="btn2 page_item_btn" @click="otherCompleteOrder(infoDATA)" hover-class="seimin-btn-hover">完成工单</view>
373 374
         <!-- 其他临床服务-拍照 -->
374
-        <view v-if="infoDATA.taskType.associationType.value == 'other' && infoDATA.gdState.value == 4 && infoDATA.taskType.carryingCourses[0].photoSwitch" class="btn2 page_item_btn" @click="photographToOther(infoDATA, 'start')" hover-class="seimin-btn-hover">拍照</view>
375
+        <!-- <view v-if="infoDATA.taskType.associationType.value == 'other' && infoDATA.gdState.value == 4 && infoDATA.taskType.carryingCourses[0].photoSwitch" class="btn2 page_item_btn" @click="photographToOther(infoDATA, 'start')" hover-class="seimin-btn-hover">拍照</view> -->
375 376
 
376
-        <view :class="[infoDATA.taskType.specialCloseButton == 1 ? 'btn3' : 'btn2']" @click="photograph(infoDATA)" v-if="
377
+        <!-- <view :class="[infoDATA.taskType.specialCloseButton == 1 ? 'btn3' : 'btn2']" @click="photograph(infoDATA)" v-if="
377 378
           infoDATA.taskType.associationType.value != 'jPBag' &&
378 379
           infoDATA.taskType.associationType.value != 'drugsBag' &&
379 380
           infoDATA.taskType.associationType.value != 'specimen' &&
@@ -381,7 +382,7 @@
381 382
           infoDATA.taskType.associationType.value != 'other' &&
382 383
           infoDATA.taskType.associationType.value != 'ordinary' &&
383 384
           infoDATA.gdState.value == 4
384
-        " hover-class="seimin-btn-hover">拍照</view>
385
+        " hover-class="seimin-btn-hover">拍照</view> -->
385 386
         <view class="btn3" @click="specialCloseClick()" v-if="
386 387
           infoDATA.gdState.value != 2 &&
387 388
           infoDATA.taskType.associationType.value != 'jPBag' &&
@@ -393,7 +394,7 @@
393 394
         " hover-class="seimin-btn-hover">特殊情况关闭</view>
394 395
       </template>
395 396
       <!-- 如果不是患者陪检或患者转运或其他,万能交接 -->
396
-      <view :class="[infoDATA.taskType.specialCloseButton == 1 ? 'btn3' : 'btn2']" v-if="
397
+      <!-- <view :class="[infoDATA.taskType.specialCloseButton == 1 ? 'btn3' : 'btn2']" v-if="
397 398
           infoDATA.gdState.value != 2 &&
398 399
           infoDATA.taskType.associationType.value != 'patientTransport' &&
399 400
           infoDATA.taskType.associationType.value != 'inspect' &&
@@ -401,7 +402,7 @@
401 402
           infoDATA.taskType.associationType.value != 'ordinary'
402 403
         " hover-class="seimin-btn-hover">
403 404
         <smallScreen :sData="infoDATA" :sType="2">扫码</smallScreen>
404
-      </view>
405
+      </view> -->
405 406
       <!-- 如果是万能交接 -->
406 407
       <view :class="[infoDATA.taskType.specialCloseButton == 1 ? 'btn3' : 'btn2']"
407 408
         v-if="infoDATA.taskType.associationType.value == 'ordinary'"
@@ -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
       },

+ 40 - 245
pages/receiptpage/receiptpage.vue

@@ -119,7 +119,7 @@
119 119
                   预约时间 : {{ item.yyTime | yyTimeFilter
120 120
                   }}<text v-if="item.reservationNumber">({{ item.reservationNumber }})</text>
121 121
                 </view>
122
-                <view>
122
+                <view style="font-weight: bold;">
123 123
                   患者信息 : {{ item.patient ? item.patient.patientName : "-" }}({{
124 124
                     item.patient ? item.patient.bedNum : "-"
125 125
                   }})
@@ -163,7 +163,7 @@
163 163
                   预约时间 : {{ item.yyjdTime | yyTimeFilter
164 164
                   }}<text v-if="item.reservationNumber">({{ item.reservationNumber }})</text>
165 165
                 </view>
166
-                <view>
166
+                <view style="font-weight: bold;">
167 167
                   患者信息 : {{ item.patient ? item.patient.patientName : "-" }}({{
168 168
                     item.patient ? item.patient.bedNum : "-"
169 169
                   }})
@@ -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 == 'patientTransport' || item.taskType.associationType.value == 'inspect'))) && !(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
               <!-- 其他临床服务-完成工单-待到达 -->
@@ -303,7 +303,7 @@
303 303
               <view v-if="item.taskType.associationType.value == 'other' && item.gdState.value == 5 && item.taskType.carryingCourses[1].actionsSwitch" class="page_item_btn" @click="otherCompleteOrder(item)" hover-class="seimin-btn-hover">完成工单</view>
304 304
               <!-- 其他临床服务-拍照 -->
305 305
               <view v-if="item.taskType.associationType.value == 'other' && item.gdState.value == 4 && item.taskType.carryingCourses[0].photoSwitch" class="page_item_btn" @click="photographToOther(item, 'start')" hover-class="seimin-btn-hover">拍照</view>
306
-              <view v-if="item.taskType.associationType.value != 'other' && item.gdState.value == 4" class="page_item_btn" @click="photograph(item)" hover-class="seimin-btn-hover">拍照</view>
306
+              <view v-if="(hideInspectScan != 1 || !(hideInspectScan == 1 && item.gdState.value != 4 && (item.taskType.associationType.value == 'patientTransport' || item.taskType.associationType.value == 'inspect'))) && item.taskType.associationType.value != 'other' && item.gdState.value == 4" class="page_item_btn" @click="photograph(item)" hover-class="seimin-btn-hover">拍照</view>
307 307
               <!-- 其他临床服务-追加 -->
308 308
               <view v-if="item.taskType.associationType.value == 'other' && item.worker && item.worker.id && clinicalMultiplayerMode === 1 && showAppendUser === 1 && item.clinicalTaskIdsFlag && !item.copyBy" class="page_item_btn" @click="additionalUser(item)" hover-class="seimin-btn-hover">追加</view>
309 309
             </view>
@@ -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", {

+ 64 - 48
pages/scanning_ins/scanning_ins.vue

@@ -24,8 +24,7 @@
24 24
 								  infoDATA.cardNo || "-"
25 25
 								}})
26 26
 							</text>
27
-							</text>
28
-            <button @click="getInspectList()">查看检查</button>
27
+            </text>
29 28
           </view>
30 29
           <view v-if="infoDATA.residenceNo">住院号 : {{ infoDATA.residenceNo || "-" }}</view>
31 30
 					<view v-if="!infoDATA.residenceNo">身份证号 : {{ infoDATA.identityCardNo || "-" }}</view>
@@ -206,23 +205,17 @@
206 205
         </view>
207 206
       </view>
208 207
 
208
+      <view class="foot_btn1" v-if="infoDATA.residenceNo && batchCreationAndReturn == 1">
209
+				<view class="btn3" @click="scanDept('all')">批量送回病房</view>
210
+				<view class="btn3" @click="getInspectList()">查看检查</view>
211
+      </view>
209 212
       <view class="foot_btn2" v-if="workData && workData.length > 0 && isShow">
210
-        <!-- <view class="btn1" @click="allStart(typeData)">一键操作</view> -->
211 213
         <view class="btn1" :class="(!infoDATA.residenceNo && addService==0)?'btn5':''" @click="getInspectAndPatientTransform(typeData)">一键操作</view>
212
-        <!-- <view class="btn1" @click="scanDept()">送回病房</view> -->
213 214
 				<view class="btn1" v-if="infoDATA.residenceNo" @click="scanDept()">送回病房</view>
214 215
 				<view class="btn1" v-if="!infoDATA.residenceNo && addService==1" @click="additional()">追加服务</view>
215 216
         <view class="btn2" :class="(!infoDATA.residenceNo && addService==0)?'btn5':''" @click="showAlert">知道了</view>
216 217
       </view>
217
-      <!-- <view class="foot_btn2" v-if="
218
-          workData && workData.length === 0 && isShow && wechatFocusSwitch == 1
219
-        "> -->
220
-      <view class="foot_btn2" v-if="
221
-          workData && workData.length === 0 && isShow
222
-        ">
223
-        <!-- <view class="btn1" @click="help">{{
224
-          infoDATA.focusPatient == 1 ? "无需帮助" : "需要帮助"
225
-        }}</view> -->
218
+      <view class="foot_btn2" v-if="workData && workData.length === 0 && isShow">
226 219
         <view class="btn3" v-if="infoDATA.residenceNo" @click="scanDept()">送回病房</view>
227 220
 				<view class="btn3" v-if="!infoDATA.residenceNo && addService==1" @click="additional()">追加服务</view>
228 221
         <view class="btn3" :class="(!infoDATA.residenceNo && addService==0)?'btn4':''" @click="showAlert">知道了</view>
@@ -233,9 +226,6 @@
233 226
         <view class="btn3" :class="(!infoDATA.residenceNo && addService==0)?'btn4':''" @click="showAlert">知道了</view>
234 227
       </view>
235 228
     </view>
236
-    <!-- 弹窗 -->
237
-    <!-- <showModel :title="models.title" :icon="models.icon" :disjunctor="models.disjunctor" :content="models.content"
238
-      @know="know" :operate="models.operate" @ok="ok" @cancel="cancel"></showModel> -->
239 229
     <showModel :title="models.title" :icon="models.icon" :disjunctor="models.disjunctor" :content="models.content"
240 230
       @know="know" :operate="models.operate"></showModel>
241 231
     <!-- 送回病房弹窗 -->
@@ -307,7 +297,8 @@
307 297
         animationData: {}, //动画
308 298
         isShow: true, //是否显示“一键操作”
309 299
         currentStartDept: {}, //扫描的起点科室
310
-				addService:null //是否开启允许追加服务
300
+				addService:null, //是否开启允许追加服务
301
+				batchCreationAndReturn:null //批量建立送回
311 302
       };
312 303
     },
313 304
     methods: {
@@ -505,7 +496,7 @@
505 496
         })
506 497
         let userId = uni.getStorageSync("userData").user.id;
507 498
         let postData = {
508
-          "workOrder": {
499
+          "workOrder": [{
509 500
             sourceId: 4,
510 501
             "hosId": this.hosId,
511 502
             "startDept": {
@@ -518,7 +509,7 @@
518 509
             "worker": {
519 510
               "id": userId
520 511
             },
521
-          },
512
+          }],
522 513
           "inspectMode": this.selectRadio.length > 0 ? this.selectRadio[0] : undefined,
523 514
         };
524 515
         post("/workerOrder/returnSickRoom", postData).then((res) => {
@@ -565,7 +556,15 @@
565 556
 			  });
566 557
 			},
567 558
       // 送回病房-扫描科室
568
-      scanDept() {
559
+      scanDept(type = '') {
560
+				if(type === 'all'){
561
+				  // 批量送回
562
+				  let infoDATA = JSON.parse(this.options.infoDATA);
563
+				  uni.navigateTo({
564
+				    url: `/pages/newSendBack/sendBackPatient/sendBackPatient?patientId=${infoDATA.id}&patientName=${infoDATA.patientName}&patientResidenceNo=${infoDATA.residenceNo}&patientCode=${infoDATA.patientCode}`,
565
+				  });
566
+					return;
567
+				}
569 568
         this.isInspectAndPatientTransform = false;
570 569
         if (!this.SMFlag) {
571 570
           return;
@@ -601,16 +600,16 @@
601 600
                       }else{
602 601
                         this.currentStartDept = res.data;
603 602
                       }
604
-                       this.models3 = {
605
-                         disjunctor: true,
606
-                         title: "提示",
607
-                         content: `您选择的起点科室为【${this.currentStartDept.dept}】,您将从【${this.currentStartDept.dept}】把【${infoDATA.patientName}】送回【${infoDATA.department.dept}】,如您确认请点击“确认建单”。`,
608
-                         icon: "warn",
609
-                         operate: {
610
-                           ok: "确认建单",
611
-                           cancel: "取消",
612
-                         },
613
-                       };
603
+                      this.models3 = {
604
+                        disjunctor: true,
605
+                        title: "提示",
606
+                        content: `您选择的起点科室为【${this.currentStartDept.dept}】,您将从【${this.currentStartDept.dept}】把【${infoDATA.patientName}】送回【${infoDATA.department.dept}】,如您确认请点击“确认建单”。`,
607
+                        icon: "warn",
608
+                        operate: {
609
+                          ok: "确认建单",
610
+                          cancel: "取消",
611
+                        },
612
+                      };
614 613
                     } else {
615 614
                       uni.hideLoading();
616 615
                       uni.showToast({
@@ -664,13 +663,17 @@
664 663
       },
665 664
       // 查看检查
666 665
       getInspectList() {
666
+        // uni.navigateTo({
667
+        //   url: `../inspectList/inspectList?id=${this.infoDATA.department.id}&dept=${this.infoDATA.department.dept}&patientCode=${this.infoDATA.patientCode}`,
668
+        // });
667 669
         uni.navigateTo({
668
-          url: `../inspectList/inspectList?id=${this.infoDATA.department.id}&dept=${this.infoDATA.department.dept}&patientCode=${this.infoDATA.patientCode}`,
670
+          url: `../patientInformationInfo/patientInformationInfo?patientCode=${this.infoDATA.patientCode}`,
669 671
         });
670 672
       },
671 673
       // 通知
672 674
       notice(info) {
673 675
         let postData = {
676
+          wechatConfigType: "hsms",
674 677
           userIds: info.worker.id + "",
675 678
           content: `您负责护送的患者${info.patient.patientName}(${info.patient.bedNum})已经检查完毕,请尽快执行工单的下一步。`,
676 679
         };
@@ -962,7 +965,8 @@
962 965
 			    if (result.status == 200) {
963 966
 			      let configs = result.list || [];
964 967
 			      if(configs.length){
965
-			        this.addService = configs[0].addService
968
+			        this.addService = configs[0].addService;
969
+			        this.batchCreationAndReturn = configs[0].batchCreationAndReturn;
966 970
 			      }
967 971
 			    } else {
968 972
 			      uni.showToast({
@@ -1073,7 +1077,7 @@
1073 1077
       padding: 0 20rpx;
1074 1078
 
1075 1079
       .Scanning_top {
1076
-        height: 400rpx;
1080
+        // height: 500rpx;
1077 1081
 
1078 1082
         .Scanning_top_icon {
1079 1083
           width: 140rpx;
@@ -1135,7 +1139,7 @@
1135 1139
       }
1136 1140
 
1137 1141
       .page_items {
1138
-        margin-bottom: 110rpx;
1142
+        padding-bottom: 200rpx;
1139 1143
 
1140 1144
         .zwsj {
1141 1145
           margin-top: 180rpx;
@@ -1428,9 +1432,9 @@
1428 1432
         }
1429 1433
       }
1430 1434
 
1431
-      .foot_btn2 {
1435
+      .foot_btn1 {
1432 1436
         position: fixed;
1433
-        bottom: 0;
1437
+        bottom: 84rpx;
1434 1438
         right: 20rpx;
1435 1439
         left: 20rpx;
1436 1440
         line-height: 66rpx;
@@ -1441,33 +1445,45 @@
1441 1445
         justify-content: space-between;
1442 1446
 
1443 1447
         .btn1,
1444
-        .btn2 {
1448
+        .btn2,
1449
+        .btn3,
1450
+        .btn4,
1451
+        .btn5 {
1445 1452
           height: 66rpx;
1446
-          width: 32%;
1453
+          flex: 1;
1447 1454
           background-image: linear-gradient(to right, #72c172, #3bb197);
1448 1455
           color: #fff;
1449 1456
           border-radius: 8rpx;
1450 1457
           font-size: 32rpx;
1451
-          margin-top: 16rpx;
1458
+          margin: 16rpx 1% 0;
1452 1459
           text-align: center;
1453 1460
         }
1461
+      }
1462
+      .foot_btn2 {
1463
+        position: fixed;
1464
+        bottom: 0;
1465
+        right: 20rpx;
1466
+        left: 20rpx;
1467
+        line-height: 66rpx;
1468
+        height: 100rpx;
1469
+        background: #f9fafb;
1470
+        display: flex;
1471
+        justify-content: space-between;
1454 1472
 
1455
-        .btn3 {
1473
+        .btn1,
1474
+        .btn2,
1475
+        .btn3,
1476
+        .btn4,
1477
+        .btn5 {
1456 1478
           height: 66rpx;
1457
-          width: 48%;
1479
+          flex: 1;
1458 1480
           background-image: linear-gradient(to right, #72c172, #3bb197);
1459 1481
           color: #fff;
1460 1482
           border-radius: 8rpx;
1461 1483
           font-size: 32rpx;
1462
-          margin-top: 16rpx;
1484
+          margin: 16rpx 1% 0;
1463 1485
           text-align: center;
1464 1486
         }
1465
-				.btn4{
1466
-					width: 100% !important;
1467
-				}
1468
-				.btn5{
1469
-					width: 48% !important;
1470
-				}
1471 1487
       }
1472 1488
     }
1473 1489
   }

+ 3 - 1
readme.md

@@ -24,4 +24,6 @@
24 24
        url('~@/static/font/iconfont.woff?t=1728893186075') format('woff'),
25 25
        url('~@/static/font/iconfont.ttf?t=1728893186075') format('truetype');
26 26
 }
27
-```
27
+```
28
+
29
+# 打包安卓apk的时候manifest.json的name字段修改为“病理全流程”

+ 21 - 1
tools/uploadFile.js

@@ -1,4 +1,5 @@
1 1
 import { api_uploadAttachment } from "@/http/http.js"
2
+import Compressor from 'compressorjs';
2 3
 /**
3 4
  * 压缩
4 5
  */
@@ -20,6 +21,24 @@ const newImage = (img) => {
20 21
   })
21 22
 }
22 23
 /**
24
+	 * 压缩图片
25
+	 */
26
+const compressImage = (file) => {
27
+  return new Promise((resolve,reject) => {
28
+    new Compressor(file, {
29
+      quality: 0.6, // 压缩质量,范围从0到1
30
+      maxWidth: 1500, // 最大宽度
31
+      maxHeight: 1500, // 最大高度
32
+      success: (result) => {
33
+        resolve(result); // 压缩后的图片
34
+      },
35
+      error: (err) => {
36
+        reject(err); // 压缩失败的错误信息
37
+      }
38
+    });
39
+  })
40
+}
41
+/**
23 42
  * 上传图片
24 43
  */
25 44
 export const uploadFile = async (imgObj, type, incidentId) => {
@@ -50,7 +69,8 @@ export const uploadFile = async (imgObj, type, incidentId) => {
50 69
     await newImage(img)
51 70
     ctx.drawImage(img, 0, 0, canvasWidth, canvasHeight)
52 71
 
53
-    const fileSrc = await toBlob(canvas, imgObj)
72
+    const blob = await toBlob(canvas, imgObj)
73
+    const fileSrc = await compressImage(blob)
54 74
     let tp = window.URL.createObjectURL(fileSrc)
55 75
     console.log('压缩后', tp);
56 76
     return uni.uploadFile({