Преглед на файлове

优化数字交接,优化标本工单详情

seimin преди 2 години
родител
ревизия
b458f2acd3

+ 21 - 2
components/changeSpeNum/changeSpeNum.vue

@@ -5,6 +5,7 @@
5 5
         {{ title }}
6 6
       </view>
7 7
       <view class="changeSpeNum__article">
8
+        <view class="tips" v-html="content" v-if="content"></view>
8 9
         <view class="uni-list-cell">
9 10
           <view class="uni-list-cell-left">
10 11
             标本数量:
@@ -35,6 +36,9 @@
35 36
         <view v-if="operate.ok" class="changeSpeNum__ok" @click="ok" hover-class="seimin-btn-hover">
36 37
           {{ operate.ok || "" }}
37 38
         </view>
39
+        <view v-if="operate.check" class="changeSpeNum__ok" @click="check" hover-class="seimin-btn-hover">
40
+          {{ operate.check || "" }}
41
+        </view>
38 42
         <view v-if="operate.cancel" class="changeSpeNum__cancel" @click="cancel" hover-class="seimin-btn-hover">
39 43
           {{ operate.cancel || "" }}
40 44
         </view>
@@ -84,12 +88,18 @@
84 88
         type: String,
85 89
         default: "提示",
86 90
       },
91
+      // 提示
92
+      content: {
93
+        type: String,
94
+        default: "",
95
+      },
87 96
       // 操作按钮文字
88 97
       operate: {
89 98
         type: Object,
90 99
         default: () => {
91 100
           return {
92
-            ok: "确认",
101
+            ok: "确认数量",
102
+            check: "",
93 103
             cancel: "取消",
94 104
           };
95 105
         },
@@ -119,6 +129,10 @@
119 129
           imageValue: this.imageValue,
120 130
         });
121 131
       },
132
+      // 详细核对
133
+      check() {
134
+        this.$emit("check");
135
+      },
122 136
       // 取消
123 137
       cancel() {
124 138
         this.$emit("cancel");
@@ -140,6 +154,8 @@
140 154
     bottom: 0;
141 155
     background-color: rgba(0, 0, 0, 0.2);
142 156
     z-index: 999;
157
+    
158
+    .tips{}
143 159
 
144 160
     .uni-list-cell {
145 161
       width: 94%;
@@ -272,7 +288,7 @@
272 288
           color: rgb(102, 102, 102);
273 289
           position: relative;
274 290
 
275
-          &:nth-of-type(2)::before {
291
+          &::before {
276 292
             content: "";
277 293
             position: absolute;
278 294
             left: 0;
@@ -281,6 +297,9 @@
281 297
             height: 87rpx;
282 298
             background-color: rgb(229, 233, 237);
283 299
           }
300
+          &:first-of-type::before {
301
+            display: none;
302
+          }
284 303
         }
285 304
 
286 305
         .changeSpeNum__ok {

+ 1 - 1
main.js

@@ -4,7 +4,7 @@ import App from './App'
4 4
 import wx from 'weixin-jsapi'
5 5
 // import VConsole from 'vconsole';
6 6
 // new VConsole();
7
-console.info('v2.4.8');
7
+console.info('v2.4.9');
8 8
 Vue.prototype.wx = wx //声明扫码
9 9
 Vue.prototype.audios = [] //待播放的语音集合
10 10
 // #endif

+ 8 - 0
pages.json

@@ -235,6 +235,14 @@
235 235
         },
236 236
         "enablePullDownRefresh": true
237 237
       }
238
+    }, {
239
+      "path": "pages/specimenDetail/specimenDetail",
240
+      "style": {
241
+        "h5": {
242
+          "titleNView": false
243
+        },
244
+        "enablePullDownRefresh": true
245
+      }
238 246
     }
239 247
   ],
240 248
   "globalStyle": {

+ 9 - 4
pages/noScanSpecimen/noScanSpecimen.vue

@@ -1,6 +1,6 @@
1 1
 <template>
2 2
   <view class="pharmacyDetails">
3
-    <view class="pharmacyDetails_title">未扫描标本信息</view>
3
+    <view class="pharmacyDetails_title">{{isScan?'已':''}}扫描标本信息</view>
4 4
     <view class="page_item footerOtherMargin">
5 5
       <view class="page_item_wrap" v-for="spe in specimens" :key="spe.id">
6 6
         <view class="page_item">
@@ -60,6 +60,7 @@
60 60
   export default {
61 61
     data() {
62 62
       return {
63
+        isScan: false,//true是已扫描标本,false是未扫描标本
63 64
         workOrderId: -1,
64 65
         deptCode: '',
65 66
         specimens: [],
@@ -71,13 +72,16 @@
71 72
         uni.navigateBack();
72 73
       },
73 74
       // 获取未扫描标本信息
74
-      getNoScanSpecimen() {
75
+      getNoScanSpecimen(isScan) {
75 76
         let postData = {
76 77
           gdIds: this.workOrderId,
77 78
           currentPage: 0,
78 79
           pageSize: 999,
79
-          deptQrCode:this.deptCode
80
+          deptQrCode: this.deptCode
80 81
         };
82
+        if(isScan){
83
+          postData.scanned = 1;
84
+        }
81 85
         uni.showLoading({
82 86
           title: "加载中",
83 87
           mask: true,
@@ -93,7 +97,8 @@
93 97
     onLoad(options) {
94 98
       this.workOrderId = JSON.parse(options.workOrderId);
95 99
       this.deptCode = options.deptCode;
96
-      this.getNoScanSpecimen();
100
+      this.isScan = Boolean(options.isScan);
101
+      this.getNoScanSpecimen(this.isScan);
97 102
       // #ifdef APP-PLUS
98 103
       webHandle("no", "app");
99 104
       // #endif

+ 54 - 2
pages/receipt_infopage/receipt_infopage.vue

@@ -325,6 +325,10 @@
325 325
           infoDATA.taskType.associationType.value != 'other' &&
326 326
           infoDATA.taskType.specialCloseButton == 1
327 327
         " hover-class="seimin-btn-hover">特殊情况关闭</view>
328
+      <view class="btn3" @click="viewSpecimen(infoDATA)" v-if="
329
+          infoDATA.taskType.associationType.value == 'specimen' ||
330
+          infoDATA.taskType.associationType.value == 'specimenPlan'
331
+        " hover-class="seimin-btn-hover">查看标本</view>
328 332
     </view>
329 333
     <!-- 弹窗 -->
330 334
     <showModel :title="models.title" :icon="models.icon" :disjunctor="models.disjunctor" :content="models.content"
@@ -398,6 +402,12 @@
398 402
       },
399 403
     },
400 404
     methods: {
405
+      // 查看标本
406
+      viewSpecimen(workOrder) {
407
+        uni.navigateTo({
408
+          url: `../specimenDetail/specimenDetail?workOrderId=${workOrder.id}&associationTypeValue=${workOrder.taskType.associationType.value}`,
409
+        });
410
+      },
401 411
       // 移除检查->知道了
402 412
       know1() {
403 413
         this.models1.disjunctor = false;
@@ -570,7 +580,7 @@
570 580
           }
571 581
         });
572 582
       },
573
-      // 请求详细页面的数据
583
+      // 请求详细页面的数据(除标本轮巡和标本配送)
574 584
       getInfo(id) {
575 585
         uni.showLoading({
576 586
           title: "加载中",
@@ -602,12 +612,54 @@
602 612
           }
603 613
         });
604 614
       },
615
+      // 请求详细页面的数据
616
+      getInfoBySpecimen(id) {
617
+        uni.showLoading({
618
+          title: "加载中",
619
+          mask: true,
620
+        });
621
+        post("/api/getWechatItem", {
622
+          id
623
+        }).then((res) => {
624
+          uni.hideLoading();
625
+          if (res.state == 200) {
626
+            this.infoDATA = res.data;
627
+            // 计算高度
628
+            setTimeout(() => {
629
+              const query = uni.createSelectorQuery().in(this);
630
+              query
631
+                .selectAll(".page_item_infos")
632
+                .boundingClientRect((data) => {
633
+                  let len = data.reduce((prev, current) => {
634
+                    return prev + current.height;
635
+                  }, 0);
636
+                  this.animation.height(len).step();
637
+                  this.animationData = this.animation.export();
638
+                })
639
+                .exec();
640
+            }, 500)
641
+          } else {
642
+            uni.showToast({
643
+              icon: "none",
644
+              title: "请求失败!",
645
+            });
646
+          }
647
+        });
648
+      },
605 649
     },
606 650
     onLoad(options) {
651
+      console.log(options, 'options');
607 652
       this.currentUserId = uni.getStorageSync('userData').user.id;
608 653
       let id = options.id;
609 654
       this.dataId = id;
610
-      this.getInfo(id);
655
+      if (
656
+        options.associationTypeValue == 'specimen' ||
657
+        options.associationTypeValue == 'specimenPlan'
658
+      ) {
659
+        this.getInfoBySpecimen(id);
660
+      } else {
661
+        this.getInfo(id);
662
+      }
611 663
       // 创建动画
612 664
       this.animation = uni.createAnimation({
613 665
         duration: 500,

+ 4 - 3
pages/receiptpage/receiptpage.vue

@@ -59,7 +59,7 @@
59 59
                 }}<template v-if="item.goodsRemark">-{{item.goodsRemark}}</template>
60 60
               </view>
61 61
             </view>
62
-            <view class="page_item_cont" @click="itemInfo(item.id)">
62
+            <view class="page_item_cont" @click="itemInfo(item)">
63 63
               <view class="page_item_cont_T">
64 64
                 <view class="page_item_cont_title">
65 65
                   <text> <text class="starting">起</text> 点科室 </text>
@@ -615,9 +615,10 @@
615 615
         }
616 616
       },
617 617
       // 进入详情页
618
-      itemInfo(id) {
618
+      itemInfo(workOrder) {
619
+        console.log(workOrder);
619 620
         uni.navigateTo({
620
-          url: `../receipt_infopage/receipt_infopage?id=${id}`,
621
+          url: `../receipt_infopage/receipt_infopage?id=${workOrder.id}&associationTypeValue=${workOrder.taskType.associationType.value}`,
621 622
         });
622 623
       },
623 624
       //抢单后知道了

+ 39 - 6
pages/scanning_Result/scanning_Result.vue

@@ -98,13 +98,14 @@
98 98
         {{ res.msg === "undefined" || !res.msg ? "" : res.msg }}
99 99
       </view>
100 100
     </view>
101
-    <view class="foot_btn" v-if="
101
+    <view class="foot_btn_spe" v-if="
102 102
         (type == 'specimen' && isKs != '1') ||
103 103
         (type == 'specimenPlan' && isKs != '1')
104 104
       ">
105 105
       <view class="btn1" @click="Scanning_again()"> 继续扫描 </view>
106 106
       <view class="btn3" @click="hand_again()">手动录入</view>
107
-      <view class="btn3" @click="getNoScanSpecimen()">未扫描标本</view>
107
+      <view class="btn3" @click="getNoScanSpecimen(false)">未扫描标本</view>
108
+      <view class="btn3" @click="getNoScanSpecimen(true)">已扫描标本</view>
108 109
       <view class="btn2" @click="Scanning_complete(dataId)"> 完成扫描 </view>
109 110
     </view>
110 111
     <view class="foot_btn" v-if="
@@ -460,14 +461,21 @@
460 461
         // ------------------------------
461 462
       },
462 463
       // 查看未扫描标本
463
-      getNoScanSpecimen() {
464
+      // isScan true已扫描标本,false未扫描标本
465
+      getNoScanSpecimen(isScan) {
464 466
         if (!this.gotoFlag) {
465 467
           return;
466 468
         }
467 469
         this.gotoFlag = false;
468
-        uni.navigateTo({
469
-          url: `../noScanSpecimen/noScanSpecimen?workOrderId=${encodeURIComponent(JSON.stringify([this.queryObj.id]))}&deptCode=${this.queryObj.deptCode}`,
470
-        });
470
+        if(isScan){
471
+          uni.navigateTo({
472
+            url: `../noScanSpecimen/noScanSpecimen?workOrderId=${encodeURIComponent(JSON.stringify([this.queryObj.id]))}&deptCode=${this.queryObj.deptCode}&isScan=1`,
473
+          });
474
+        }else{
475
+          uni.navigateTo({
476
+            url: `../noScanSpecimen/noScanSpecimen?workOrderId=${encodeURIComponent(JSON.stringify([this.queryObj.id]))}&deptCode=${this.queryObj.deptCode}`,
477
+          });
478
+        }
471 479
       },
472 480
       // 拍照
473 481
       photograph(data, obj) {
@@ -896,5 +904,30 @@
896 904
         text-align: center;
897 905
       }
898 906
     }
907
+    .foot_btn_spe {
908
+      line-height: 88rpx;
909
+      height: 100rpx;
910
+      margin-top: 40rpx;
911
+      text-align: center;
912
+      display: flex;
913
+      justify-content: space-between;
914
+      flex-wrap: wrap;
915
+    
916
+      &::after {
917
+        content: '';
918
+        flex: 1;
919
+      }
920
+    
921
+      view {
922
+        height: 88rpx;
923
+        width: 48%;
924
+        margin: 0 1%;
925
+        background-image: linear-gradient(to right, #72c172, #3bb197);
926
+        color: #fff;
927
+        border-radius: 8rpx;
928
+        font-size: 32rpx;
929
+        margin-top: 16rpx;
930
+      }
931
+    }
899 932
   }
900 933
 </style>

+ 312 - 3
pages/scanning_code/scanning_code.vue

@@ -361,6 +361,10 @@
361 361
     <handViewDrugsBag v-if="drugbagModels.disjunctor" :title="drugbagModels.title"
362 362
       :disjunctor="drugbagModels.disjunctor" @ok="drugbagOk" @cancel="drugbagCancel">
363 363
     </handViewDrugsBag>
364
+    <!-- 修改标本数量弹窗 -->
365
+    <changeSpeNum v-if="changeSpeModels.disjunctor" :operate="{ok:'确认数量',check:'详细核对',cancel:'取消'}" :title="changeSpeModels.title" :content="changeSpeModels.content"
366
+      :disjunctor="changeSpeModels.disjunctor" @ok="changeSpeOk" @check="changeSpeCheck" @cancel="changeSpeCancel" :num="speNumChange">
367
+    </changeSpeNum>
364 368
   </view>
365 369
 </template>
366 370
 <script>
@@ -377,6 +381,12 @@
377 381
   export default {
378 382
     data() {
379 383
       return {
384
+        speNumChange: 0,
385
+        changeSpeObj: {},
386
+        // 修改标本数量弹窗model
387
+        changeSpeModels: {
388
+          disjunctor: false,
389
+        },
380 390
         currentCode: '', //当前小扫描的科室二维码
381 391
         // 手动查询标本弹窗model
382 392
         speModels: {
@@ -408,11 +418,12 @@
408 418
       };
409 419
     },
410 420
     methods: {
411
-      // 数量核对
412
-      checkNumber(infoDATA) {
421
+      // 修改标本数量-核对
422
+      changeSpeCheck(){
423
+        console.log(this.infoDATA);
424
+        this.changeSpeModels.disjunctor = false;
413 425
         let deptId = this.queryObj.deptId;
414 426
         let endDepts = this.queryObj.endDepts;
415
-        console.log(endDepts,'scanning_code')
416 427
         if (deptId) {
417 428
           // 小扫描
418 429
           uni.navigateTo({
@@ -425,6 +436,304 @@
425 436
           })
426 437
         }
427 438
       },
439
+      // 修改标本数量-确认
440
+      changeSpeOk(data) {
441
+        console.log(data);
442
+        const pathUrl = uni.getStorageSync("path");
443
+        const {
444
+          speNum,
445
+          reason,
446
+          imageValue
447
+        } = data;
448
+        this.changeSpeModels.disjunctor = false;
449
+        uni.showLoading({
450
+          mask: true,
451
+          title: "加载中",
452
+        });
453
+        let postData = {
454
+          checkDept: this.changeSpeObj.endDepts, //终点科室
455
+          transDeptId: this.changeSpeObj.infoDATA.startDept,
456
+          gdId: this.changeSpeObj.infoDATA.uuid,
457
+          deptId: this.changeSpeObj.id == "undefined" ?
458
+            this.changeSpeObj.infoDATA.startDept : this.changeSpeObj.id,
459
+          specimensNum: speNum,
460
+          modifyReason: reason,
461
+        };
462
+        post("/api/updateCheckDeptSpecimensNum", postData).then((res) => {
463
+          if (res.status == 200) {
464
+            console.log(imageValue);
465
+            if (!imageValue.length) {
466
+              uni.hideLoading();
467
+              uni.showModal({
468
+                title: "提示",
469
+                content: "修改成功!",
470
+                showCancel: false,
471
+                success: (result) => {
472
+                  if (result.confirm) {
473
+                    console.log("用户点击确定");
474
+                    if (this.changeSpeObj.t == "big") {
475
+                      if (this.changeSpeObj.gdState == 4) {
476
+                        // 待到达
477
+                        uni.navigateTo({
478
+                          url: `../../pages/receiptpage/receiptpage`,
479
+                        });
480
+                      } else if (this.changeSpeObj.gdState == 5) {
481
+                        // 待送达
482
+                        if (res.type1 === "plan-spe-ddd-2") {} else {
483
+                          let content = `本工单已签到<strong class="red">${
484
+                          res.scanSet ? res.scanSet.join("、") : ""
485
+                        }</strong>,剩余需签到科室<strong class="red">${
486
+                          res.notScanSet ? res.notScanSet.join("、") : ""
487
+                        }</strong>,您确定完成工单吗?`;
488
+                          uni.navigateTo({
489
+                            url: `../scanning/scanning?type=${res.type}&type1=${
490
+                            res.type1
491
+                          }&id=${encodeURIComponent(
492
+                            JSON.stringify([res.gdid])
493
+                          )}&content=${content}`,
494
+                          });
495
+                        }
496
+                      }
497
+                    } else if (this.changeSpeObj.t == "small") {
498
+                      if (this.changeSpeObj.id == "undefined") {
499
+                        //快捷建单建单进入
500
+                        uni.navigateTo({
501
+                          url: `../../pages/receiptpage/receiptpage`,
502
+                        });
503
+                      } else {
504
+                        if (this.changeSpeObj.gdState == 4) {
505
+                          // 待到达
506
+                          uni.navigateTo({
507
+                            url: `../../pages/receiptpage/receiptpage`,
508
+                          });
509
+                        } else if (this.changeSpeObj.gdState == 5) {
510
+                          // 待送达
511
+                          if (res.type1 === "plan-spe-ddd-2") {} else {
512
+                            let content = `本工单已签到<strong class="red">${
513
+                            res.scanSet ? res.scanSet.join("、") : ""
514
+                          }</strong>,剩余需签到科室<strong class="red">${
515
+                            res.notScanSet ? res.notScanSet.join("、") : ""
516
+                          }</strong>,您确定完成工单吗?`;
517
+                            uni.navigateTo({
518
+                              url: `../scanning/scanning?type=${res.type}&type1=${
519
+                              res.type1
520
+                            }&id=${encodeURIComponent(
521
+                              JSON.stringify([res.gdid])
522
+                            )}&content=${content}`,
523
+                            });
524
+                          }
525
+                        }
526
+                      }
527
+                    } else {
528
+                      uni.navigateTo({
529
+                        url: `../../pages/specimenChecking/specimenChecking?infoDATA=${encodeURIComponent(
530
+                        JSON.stringify(this.changeSpeObj.infoDATA)
531
+                      )}`,
532
+                      });
533
+                    }
534
+                  } else if (result.cancel) {
535
+                    console.log("用户点击取消");
536
+                  }
537
+                },
538
+              });
539
+              return;
540
+            }
541
+            let n = 0;
542
+            imageValue.forEach((v) => {
543
+              // 图片上传 start
544
+              console.log("压缩前");
545
+              let canvasWidth = v.image.width; //图片原始长宽
546
+              let canvasHeight = v.image.height;
547
+              let img = new Image();
548
+              img.src = v.path;
549
+              let canvas = document.createElement("canvas");
550
+              let ctx = canvas.getContext("2d");
551
+              canvas.width = canvasWidth;
552
+              canvas.height = canvasHeight;
553
+              ctx.drawImage(img, 0, 0, canvasWidth, canvasHeight);
554
+              canvas.toBlob(
555
+                (fileSrc) => {
556
+                  let tp = window.URL.createObjectURL(fileSrc);
557
+                  console.log("压缩后");
558
+                  n++;
559
+                  uni.uploadFile({
560
+                    url: pathUrl +
561
+                      "/common/common/uploadAttachment/specimenPhotos/" +
562
+                      res.deptSpecimensNumId +
563
+                      "/666",
564
+                    filePath: tp,
565
+                    name: "file",
566
+                    formData: {
567
+                      filename: v.cloudPath,
568
+                    },
569
+                    success: (uploadFileRes) => {
570
+                      console.log(uploadFileRes);
571
+                      if (--n === 0) {
572
+                        uni.hideLoading();
573
+                        uni.showModal({
574
+                          title: "提示",
575
+                          content: "修改成功!",
576
+                          showCancel: false,
577
+                          success: (result) => {
578
+                            if (result.confirm) {
579
+                              console.log("用户点击确定", this.changeSpeObj.t);
580
+                              if (this.changeSpeObj.t == "big") {
581
+                                if (this.changeSpeObj.gdState == 4) {
582
+                                  // 待到达
583
+                                  uni.navigateTo({
584
+                                    url: `../../pages/receiptpage/receiptpage`,
585
+                                  });
586
+                                } else if (this.changeSpeObj.gdState == 5) {
587
+                                  // 待送达
588
+                                  if (res.type1 === "plan-spe-ddd-2") {} else {
589
+                                    let content = `本工单已签到<strong class="red">${
590
+                                    res.scanSet ? res.scanSet.join("、") : ""
591
+                                  }</strong>,剩余需签到科室<strong class="red">${
592
+                                    res.notScanSet ? res.notScanSet.join("、") : ""
593
+                                  }</strong>,您确定完成工单吗?`;
594
+                                    uni.navigateTo({
595
+                                      url: `../scanning/scanning?type=${res.type}&type1=${
596
+                                      res.type1
597
+                                    }&id=${encodeURIComponent(
598
+                                      JSON.stringify([res.gdid])
599
+                                    )}&content=${content}`,
600
+                                    });
601
+                                  }
602
+                                }
603
+                              } else if (this.changeSpeObj.t == "small") {
604
+                                if (this.changeSpeObj.id == "undefined") {
605
+                                  //快捷建单建单进入
606
+                                  uni.navigateTo({
607
+                                    url: `../../pages/receiptpage/receiptpage`,
608
+                                  });
609
+                                } else {
610
+                                  if (this.changeSpeObj.gdState == 4) {
611
+                                    // 待到达
612
+                                    uni.navigateTo({
613
+                                      url: `../../pages/receiptpage/receiptpage`,
614
+                                    });
615
+                                  } else if (this.changeSpeObj.gdState == 5) {
616
+                                    // 待送达
617
+                                    if (res.type1 === "plan-spe-ddd-2") {} else {
618
+                                      let content = `本工单已签到<strong class="red">${
619
+                                      res.scanSet ? res.scanSet.join("、") : ""
620
+                                    }</strong>,剩余需签到科室<strong class="red">${
621
+                                      res.notScanSet ? res.notScanSet.join("、") : ""
622
+                                    }</strong>,您确定完成工单吗?`;
623
+                                      uni.navigateTo({
624
+                                        url: `../scanning/scanning?type=${res.type}&type1=${
625
+                                        res.type1
626
+                                      }&id=${encodeURIComponent(
627
+                                        JSON.stringify([res.gdid])
628
+                                      )}&content=${content}`,
629
+                                      });
630
+                                    }
631
+                                  }
632
+                                }
633
+                              } else {
634
+                                uni.navigateTo({
635
+                                  url: `../../pages/specimenChecking/specimenChecking?infoDATA=${encodeURIComponent(
636
+                                  JSON.stringify(this.changeSpeObj.infoDATA)
637
+                                )}`,
638
+                                });
639
+                              }
640
+                            } else if (result.cancel) {
641
+                              console.log("用户点击取消");
642
+                            }
643
+                          },
644
+                        });
645
+                      }
646
+                    },
647
+                    fail: (err) => {
648
+                      n--;
649
+                      console.error(err);
650
+                      uni.hideLoading();
651
+                      uni.showToast({
652
+                        icon: "none",
653
+                        title: "上传失败",
654
+                        duration: 2000,
655
+                      });
656
+                    },
657
+                  });
658
+                },
659
+                "image/jpeg",
660
+                0.3
661
+              );
662
+              // 图片上传 end
663
+            });
664
+          } else {
665
+            uni.hideLoading();
666
+            uni.showToast({
667
+              icon: "none",
668
+              title: "请求失败!",
669
+            });
670
+          }
671
+        });
672
+      },
673
+      // 修改标本数量-取消
674
+      changeSpeCancel() {
675
+        this.changeSpeModels.disjunctor = false;
676
+      },
677
+      // 修改标本数量弹窗
678
+      showChangeSpe() {
679
+        uni.showLoading({
680
+          mask: true,
681
+          title: "加载中",
682
+        });
683
+        let postData = {
684
+          deptId: this.deptId,
685
+          gdId: this.dataId,
686
+        };
687
+        post(`/api/getStartDeptSpecimensNum`, postData).then((res) => {
688
+          uni.hideLoading();
689
+          if (res.status == 200) {
690
+            this.speNumChange = res.deptSpecimensNum;
691
+            this.changeSpeModels = {
692
+              title: "修改标本数量",
693
+              content: `您已到达<span class="red">${this.DEPT}</span>本科室标本数量为<span class="red">${this.speNumChange}</span>,请确认标本数量`,
694
+              disjunctor: true,
695
+            };
696
+          } else {
697
+            this.speNumChange = "";
698
+            uni.showToast({
699
+              icon: "none",
700
+              title: "请求失败!",
701
+            });
702
+          }
703
+        });
704
+      },
705
+      // 数量核对
706
+      checkNumber(infoDATA) {
707
+        let deptId = this.queryObj.deptId;
708
+        let endDepts = this.queryObj.endDepts;
709
+        console.log(endDepts, 'scanning_code');
710
+        // 存数据
711
+        if (deptId) {
712
+          // 小扫描
713
+          this.changeSpeObj = {
714
+            infoDATA: {
715
+              startDept: this.infoDATA.startDept.id,
716
+              uuid: this.infoDATA.id
717
+            },
718
+            id: deptId,
719
+            t: 'small',
720
+            gdState: this.infoDATA.gdState.value,
721
+            endDepts,
722
+          }
723
+        } else {
724
+          // 快捷建单进入小扫描
725
+          this.changeSpeObj = {
726
+            infoDATA: {
727
+              startDept: this.infoDATA.startDept.id,
728
+              uuid: this.infoDATA.id
729
+            },
730
+            id: deptId,
731
+            t: 'small',
732
+            endDepts,
733
+          }
734
+        }
735
+        this.showChangeSpe();
736
+      },
428 737
       // 手动查询药品-确认
429 738
       drugbagOk(data) {
430 739
         console.log(data);

+ 313 - 10
pages/scanning_djEnd/scanning_djEnd.vue

@@ -137,7 +137,8 @@
137 137
       ">
138 138
       <view class="btn1" @click="Scanning_again()">扫描标本</view>
139 139
       <view class="btn3" @click="showHandViewSpecimen()">手动录入</view>
140
-      <view class="btn3" @click="getNoScanSpecimen()">未扫描标本</view>
140
+      <view class="btn3" @click="getNoScanSpecimen(false)">未扫描标本</view>
141
+      <view class="btn3" @click="getNoScanSpecimen(true)">已扫描标本</view>
141 142
       <view class="btn2" @click="Scanning_complete(ids)">完成扫描</view>
142 143
       <view class="btn2" @click="checkNumber()" v-if="queryObj.isDigitalHandover==1">数量核对</view>
143 144
     </view>
@@ -147,7 +148,8 @@
147 148
       ">
148 149
       <view class="btn1" @click="Scanning_again()">扫描标本</view>
149 150
       <view class="btn3" @click="showHandViewSpecimen()">手动录入</view>
150
-      <view class="btn3" @click="getNoScanSpecimen()">未扫描标本</view>
151
+      <view class="btn3" @click="getNoScanSpecimen(false)">未扫描标本</view>
152
+      <view class="btn3" @click="getNoScanSpecimen(true)">已扫描标本</view>
151 153
       <view class="btn2" @click="Scanning_complete(ids)">完成扫描</view>
152 154
       <view class="btn2" @click="checkNumber()" v-if="queryObj.isDigitalHandover==1">数量核对</view>
153 155
     </view>
@@ -201,6 +203,11 @@
201 203
     <handViewDrugsBag v-if="drugbagModels.disjunctor" :title="drugbagModels.title"
202 204
       :disjunctor="drugbagModels.disjunctor" @ok="drugbagOk" @cancel="drugbagCancel">
203 205
     </handViewDrugsBag>
206
+    <!-- 修改标本数量弹窗 -->
207
+    <changeSpeNum v-if="changeSpeModels.disjunctor" :operate="{ok:'确认数量',check:'详细核对',cancel:'取消'}"
208
+      :title="changeSpeModels.title" :content="changeSpeModels.content" :disjunctor="changeSpeModels.disjunctor"
209
+      @ok="changeSpeOk" @check="changeSpeCheck" @cancel="changeSpeCancel" :num="speNumChange">
210
+    </changeSpeNum>
204 211
   </view>
205 212
 </template>
206 213
 <script>
@@ -214,6 +221,12 @@
214 221
   export default {
215 222
     data() {
216 223
       return {
224
+        speNumChange: 0,
225
+        changeSpeObj: {},
226
+        // 修改标本数量弹窗model
227
+        changeSpeModels: {
228
+          disjunctor: false,
229
+        },
217 230
         currentCode: '', //当前小扫描的科室二维码
218 231
         // 手动查询标本弹窗model
219 232
         speModels: {
@@ -250,12 +263,293 @@
250 263
       };
251 264
     },
252 265
     methods: {
253
-      // 数量核对 queryObj
254
-      checkNumber() {
266
+      // 修改标本数量-核对
267
+      changeSpeCheck() {
268
+        console.log(this.infoDATA);
269
+        this.changeSpeModels.disjunctor = false;
255 270
         uni.navigateTo({
256 271
           url: `/pages/specimenCheckingDetail/specimenCheckingDetail?infoDATA=${encodeURIComponent(JSON.stringify({startDept:this.queryObj.startDeptId,uuid:this.queryObj.gdId}))}&id=${this.queryObj.signDeptId}&t=big&gdState=${this.queryObj.gdState}`
257 272
         })
258 273
       },
274
+      // 修改标本数量-确认
275
+      changeSpeOk(data) {
276
+        console.log(data);
277
+        const pathUrl = uni.getStorageSync("path");
278
+        const {
279
+          speNum,
280
+          reason,
281
+          imageValue
282
+        } = data;
283
+        this.changeSpeModels.disjunctor = false;
284
+        uni.showLoading({
285
+          mask: true,
286
+          title: "加载中",
287
+        });
288
+        let postData = {
289
+          checkDept: this.changeSpeObj.endDepts, //终点科室
290
+          transDeptId: this.changeSpeObj.infoDATA.startDept,
291
+          gdId: this.changeSpeObj.infoDATA.uuid,
292
+          deptId: this.changeSpeObj.id == "undefined" ?
293
+            this.changeSpeObj.infoDATA.startDept : this.changeSpeObj.id,
294
+          specimensNum: speNum,
295
+          modifyReason: reason,
296
+        };
297
+        post("/api/updateCheckDeptSpecimensNum", postData).then((res) => {
298
+          if (res.status == 200) {
299
+            console.log(imageValue);
300
+            if (!imageValue.length) {
301
+              uni.hideLoading();
302
+              uni.showModal({
303
+                title: "提示",
304
+                content: "修改成功!",
305
+                showCancel: false,
306
+                success: (result) => {
307
+                  if (result.confirm) {
308
+                    console.log("用户点击确定");
309
+                    if (this.changeSpeObj.t == "big") {
310
+                      if (this.changeSpeObj.gdState == 4) {
311
+                        // 待到达
312
+                        uni.navigateTo({
313
+                          url: `../../pages/receiptpage/receiptpage`,
314
+                        });
315
+                      } else if (this.changeSpeObj.gdState == 5) {
316
+                        // 待送达
317
+                        if (res.type1 === "plan-spe-ddd-2") {} else {
318
+                          let content = `本工单已签到<strong class="red">${
319
+                          res.scanSet ? res.scanSet.join("、") : ""
320
+                        }</strong>,剩余需签到科室<strong class="red">${
321
+                          res.notScanSet ? res.notScanSet.join("、") : ""
322
+                        }</strong>,您确定完成工单吗?`;
323
+                          uni.navigateTo({
324
+                            url: `../scanning/scanning?type=${res.type}&type1=${
325
+                            res.type1
326
+                          }&id=${encodeURIComponent(
327
+                            JSON.stringify([res.gdid])
328
+                          )}&content=${content}`,
329
+                          });
330
+                        }
331
+                      }
332
+                    } else if (this.changeSpeObj.t == "small") {
333
+                      if (this.changeSpeObj.id == "undefined") {
334
+                        //快捷建单建单进入
335
+                        uni.navigateTo({
336
+                          url: `../../pages/receiptpage/receiptpage`,
337
+                        });
338
+                      } else {
339
+                        if (this.changeSpeObj.gdState == 4) {
340
+                          // 待到达
341
+                          uni.navigateTo({
342
+                            url: `../../pages/receiptpage/receiptpage`,
343
+                          });
344
+                        } else if (this.changeSpeObj.gdState == 5) {
345
+                          // 待送达
346
+                          if (res.type1 === "plan-spe-ddd-2") {} else {
347
+                            let content = `本工单已签到<strong class="red">${
348
+                            res.scanSet ? res.scanSet.join("、") : ""
349
+                          }</strong>,剩余需签到科室<strong class="red">${
350
+                            res.notScanSet ? res.notScanSet.join("、") : ""
351
+                          }</strong>,您确定完成工单吗?`;
352
+                            uni.navigateTo({
353
+                              url: `../scanning/scanning?type=${res.type}&type1=${
354
+                              res.type1
355
+                            }&id=${encodeURIComponent(
356
+                              JSON.stringify([res.gdid])
357
+                            )}&content=${content}`,
358
+                            });
359
+                          }
360
+                        }
361
+                      }
362
+                    } else {
363
+                      uni.navigateTo({
364
+                        url: `../../pages/specimenChecking/specimenChecking?infoDATA=${encodeURIComponent(
365
+                        JSON.stringify(this.changeSpeObj.infoDATA)
366
+                      )}`,
367
+                      });
368
+                    }
369
+                  } else if (result.cancel) {
370
+                    console.log("用户点击取消");
371
+                  }
372
+                },
373
+              });
374
+              return;
375
+            }
376
+            let n = 0;
377
+            imageValue.forEach((v) => {
378
+              // 图片上传 start
379
+              console.log("压缩前");
380
+              let canvasWidth = v.image.width; //图片原始长宽
381
+              let canvasHeight = v.image.height;
382
+              let img = new Image();
383
+              img.src = v.path;
384
+              let canvas = document.createElement("canvas");
385
+              let ctx = canvas.getContext("2d");
386
+              canvas.width = canvasWidth;
387
+              canvas.height = canvasHeight;
388
+              ctx.drawImage(img, 0, 0, canvasWidth, canvasHeight);
389
+              canvas.toBlob(
390
+                (fileSrc) => {
391
+                  let tp = window.URL.createObjectURL(fileSrc);
392
+                  console.log("压缩后");
393
+                  n++;
394
+                  uni.uploadFile({
395
+                    url: pathUrl +
396
+                      "/common/common/uploadAttachment/specimenPhotos/" +
397
+                      res.deptSpecimensNumId +
398
+                      "/666",
399
+                    filePath: tp,
400
+                    name: "file",
401
+                    formData: {
402
+                      filename: v.cloudPath,
403
+                    },
404
+                    success: (uploadFileRes) => {
405
+                      console.log(uploadFileRes);
406
+                      if (--n === 0) {
407
+                        uni.hideLoading();
408
+                        uni.showModal({
409
+                          title: "提示",
410
+                          content: "修改成功!",
411
+                          showCancel: false,
412
+                          success: (result) => {
413
+                            if (result.confirm) {
414
+                              console.log("用户点击确定", this.changeSpeObj.t);
415
+                              if (this.changeSpeObj.t == "big") {
416
+                                if (this.changeSpeObj.gdState == 4) {
417
+                                  // 待到达
418
+                                  uni.navigateTo({
419
+                                    url: `../../pages/receiptpage/receiptpage`,
420
+                                  });
421
+                                } else if (this.changeSpeObj.gdState == 5) {
422
+                                  // 待送达
423
+                                  if (res.type1 === "plan-spe-ddd-2") {} else {
424
+                                    let content = `本工单已签到<strong class="red">${
425
+                                    res.scanSet ? res.scanSet.join("、") : ""
426
+                                  }</strong>,剩余需签到科室<strong class="red">${
427
+                                    res.notScanSet ? res.notScanSet.join("、") : ""
428
+                                  }</strong>,您确定完成工单吗?`;
429
+                                    uni.navigateTo({
430
+                                      url: `../scanning/scanning?type=${res.type}&type1=${
431
+                                      res.type1
432
+                                    }&id=${encodeURIComponent(
433
+                                      JSON.stringify([res.gdid])
434
+                                    )}&content=${content}`,
435
+                                    });
436
+                                  }
437
+                                }
438
+                              } else if (this.changeSpeObj.t == "small") {
439
+                                if (this.changeSpeObj.id == "undefined") {
440
+                                  //快捷建单建单进入
441
+                                  uni.navigateTo({
442
+                                    url: `../../pages/receiptpage/receiptpage`,
443
+                                  });
444
+                                } else {
445
+                                  if (this.changeSpeObj.gdState == 4) {
446
+                                    // 待到达
447
+                                    uni.navigateTo({
448
+                                      url: `../../pages/receiptpage/receiptpage`,
449
+                                    });
450
+                                  } else if (this.changeSpeObj.gdState == 5) {
451
+                                    // 待送达
452
+                                    if (res.type1 === "plan-spe-ddd-2") {} else {
453
+                                      let content = `本工单已签到<strong class="red">${
454
+                                      res.scanSet ? res.scanSet.join("、") : ""
455
+                                    }</strong>,剩余需签到科室<strong class="red">${
456
+                                      res.notScanSet ? res.notScanSet.join("、") : ""
457
+                                    }</strong>,您确定完成工单吗?`;
458
+                                      uni.navigateTo({
459
+                                        url: `../scanning/scanning?type=${res.type}&type1=${
460
+                                        res.type1
461
+                                      }&id=${encodeURIComponent(
462
+                                        JSON.stringify([res.gdid])
463
+                                      )}&content=${content}`,
464
+                                      });
465
+                                    }
466
+                                  }
467
+                                }
468
+                              } else {
469
+                                uni.navigateTo({
470
+                                  url: `../../pages/specimenChecking/specimenChecking?infoDATA=${encodeURIComponent(
471
+                                  JSON.stringify(this.changeSpeObj.infoDATA)
472
+                                )}`,
473
+                                });
474
+                              }
475
+                            } else if (result.cancel) {
476
+                              console.log("用户点击取消");
477
+                            }
478
+                          },
479
+                        });
480
+                      }
481
+                    },
482
+                    fail: (err) => {
483
+                      n--;
484
+                      console.error(err);
485
+                      uni.hideLoading();
486
+                      uni.showToast({
487
+                        icon: "none",
488
+                        title: "上传失败",
489
+                        duration: 2000,
490
+                      });
491
+                    },
492
+                  });
493
+                },
494
+                "image/jpeg",
495
+                0.3
496
+              );
497
+              // 图片上传 end
498
+            });
499
+          } else {
500
+            uni.hideLoading();
501
+            uni.showToast({
502
+              icon: "none",
503
+              title: "请求失败!",
504
+            });
505
+          }
506
+        });
507
+      },
508
+      // 修改标本数量-取消
509
+      changeSpeCancel() {
510
+        this.changeSpeModels.disjunctor = false;
511
+      },
512
+      // 修改标本数量弹窗
513
+      showChangeSpe() {
514
+        uni.showLoading({
515
+          mask: true,
516
+          title: "加载中",
517
+        });
518
+        let postData = {
519
+          deptId: this.deptId,
520
+          gdId: this.queryObj.gdId,
521
+        };
522
+        post(`/api/getStartDeptSpecimensNum`, postData).then((res) => {
523
+          uni.hideLoading();
524
+          if (res.status == 200) {
525
+            this.speNumChange = res.deptSpecimensNum;
526
+            this.changeSpeModels = {
527
+              title: "修改标本数量",
528
+              content: `您已到达<span class="red">${this.queryObj.dept}</span>本科室标本数量为<span class="red">${this.speNumChange}</span>,请确认标本数量`,
529
+              disjunctor: true,
530
+            };
531
+          } else {
532
+            this.speNumChange = "";
533
+            uni.showToast({
534
+              icon: "none",
535
+              title: "请求失败!",
536
+            });
537
+          }
538
+        });
539
+      },
540
+      // 数量核对 queryObj
541
+      checkNumber() {
542
+        this.changeSpeObj = {
543
+          infoDATA: {
544
+            startDept: this.queryObj.startDeptId,
545
+            uuid: this.queryObj.gdId
546
+          },
547
+          id: this.queryObj.signDeptId,
548
+          t: 'big',
549
+          gdState: this.queryObj.gdState,
550
+        }
551
+        this.showChangeSpe();
552
+      },
259 553
       // 手动查询药品-确认
260 554
       drugbagOk(data) {
261 555
         console.log(data);
@@ -435,17 +729,26 @@
435 729
         // ------------------------------
436 730
       },
437 731
       // 查看未扫描标本
438
-      getNoScanSpecimen() {
732
+      // isScan true已扫描标本,false未扫描标本
733
+      getNoScanSpecimen(isScan) {
439 734
         if (!this.gotoFlag) {
440 735
           return;
441 736
         }
442 737
         this.gotoFlag = false;
443 738
         let ids = JSON.parse(this.queryObj.ids);
444
-        uni.navigateTo({
445
-          url: `../noScanSpecimen/noScanSpecimen?workOrderId=${encodeURIComponent(
446
-          JSON.stringify(ids)
447
-        )}&deptCode=${this.queryObj.code}`,
448
-        });
739
+        if (isScan) {
740
+          uni.navigateTo({
741
+            url: `../noScanSpecimen/noScanSpecimen?workOrderId=${encodeURIComponent(
742
+            JSON.stringify(ids)
743
+          )}&deptCode=${this.queryObj.code}&isScan=1`,
744
+          });
745
+        } else {
746
+          uni.navigateTo({
747
+            url: `../noScanSpecimen/noScanSpecimen?workOrderId=${encodeURIComponent(
748
+            JSON.stringify(ids)
749
+          )}&deptCode=${this.queryObj.code}`,
750
+          });
751
+        }
449 752
       },
450 753
       // 正常完成扫描
451 754
       overFinish() {

+ 40 - 6
pages/scanning_djInfo/scanning_djInfo.vue

@@ -96,12 +96,13 @@
96 96
       <view class="btn1" @click="Scanning_again()">继续扫描</view>
97 97
       <view class="btn2" @click="showAlert()">知道了</view>
98 98
     </view> -->
99
-    <view class="foot_btn" v-if="
99
+    <view class="foot_btn_spe" v-if="
100 100
         res.status == 100018 || type == 'specimen' || type == 'specimenPlan'
101 101
       ">
102 102
       <view class="btn1" @click="Scanning_again()">继续扫描</view>
103 103
       <view class="btn3" @click="hand_again()" v-if="type == 'specimen' || type == 'specimenPlan'">手动录入</view>
104
-      <view class="btn3" @click="getNoScanSpecimen()" v-if="type == 'specimen' || type == 'specimenPlan'">未扫描标本</view>
104
+      <view class="btn3" @click="getNoScanSpecimen(false)" v-if="type == 'specimen' || type == 'specimenPlan'">未扫描标本</view>
105
+      <view class="btn3" @click="getNoScanSpecimen(true)" v-if="type == 'specimen' || type == 'specimenPlan'">已扫描标本</view>
105 106
       <view class="btn2" @click="Scanning_complete(ids)">完成扫描</view>
106 107
     </view>
107 108
     <view class="foot_btn" v-if="
@@ -403,14 +404,21 @@
403 404
         // ------------------------------
404 405
       },
405 406
       // 查看未扫描标本
406
-      getNoScanSpecimen() {
407
+      // isScan true已扫描标本,false未扫描标本
408
+      getNoScanSpecimen(isScan) {
407 409
         if (!this.gotoFlag) {
408 410
           return;
409 411
         }
410 412
         this.gotoFlag = false;
411
-        uni.navigateTo({
412
-          url: `../noScanSpecimen/noScanSpecimen?workOrderId=${encodeURIComponent(JSON.stringify(this.queryObj.ids))}&deptCode=${this.queryObj.deptCode}`,
413
-        });
413
+        if(isScan){
414
+          uni.navigateTo({
415
+            url: `../noScanSpecimen/noScanSpecimen?workOrderId=${encodeURIComponent(JSON.stringify(this.queryObj.ids))}&deptCode=${this.queryObj.deptCode}&isScan=1`,
416
+          });
417
+        }else{
418
+          uni.navigateTo({
419
+            url: `../noScanSpecimen/noScanSpecimen?workOrderId=${encodeURIComponent(JSON.stringify(this.queryObj.ids))}&deptCode=${this.queryObj.deptCode}`,
420
+          });
421
+        }
414 422
       },
415 423
       overFinish() {
416 424
         let postType = "";
@@ -621,6 +629,7 @@
621 629
     },
622 630
     onShow() {
623 631
       this.SMFlag = true;
632
+      this.gotoFlag = true;
624 633
     },
625 634
     onLoad(options) {
626 635
       if (options.status == 200&&options.scanOrHand === 'hand'&&(options.type === "specimen"||options.type === "specimenPlan")) {
@@ -750,5 +759,30 @@
750 759
         margin-top: 16rpx;
751 760
       }
752 761
     }
762
+    .foot_btn_spe {
763
+      line-height: 88rpx;
764
+      height: 100rpx;
765
+      margin-top: 40rpx;
766
+      text-align: center;
767
+      display: flex;
768
+      justify-content: space-between;
769
+      flex-wrap: wrap;
770
+    
771
+      &::after {
772
+        content: '';
773
+        flex: 1;
774
+      }
775
+    
776
+      view {
777
+        height: 88rpx;
778
+        width: 48%;
779
+        margin: 0 1%;
780
+        background-image: linear-gradient(to right, #72c172, #3bb197);
781
+        color: #fff;
782
+        border-radius: 8rpx;
783
+        font-size: 32rpx;
784
+        margin-top: 16rpx;
785
+      }
786
+    }
753 787
   }
754 788
 </style>

+ 423 - 0
pages/specimenDetail/specimenDetail.vue

@@ -0,0 +1,423 @@
1
+<template>
2
+  <view class="specimenCheckingDetail">
3
+    <view class="page_item_wrap" v-for="item in list" :key="item.id">
4
+      <view class="page_item">
5
+        <view class="page_item_top">
6
+          <view class="page_item_top-inner">
7
+            <view class="page_item_top_L">
8
+              <view class="L_text">{{ item.patientName }}</view>
9
+            </view>
10
+          </view>
11
+        </view>
12
+        <view class="page_item_cont">
13
+          <view class="page_item_cont_T">
14
+            <view class="page_item_cont_title">
15
+              <view> 检验项目 </view>
16
+              <view class="text_big">{{ item.specimenDesc || "无" }}</view>
17
+            </view>
18
+            <view class="page_item_cont_title">
19
+              <view> 标本编码 </view>
20
+              <view class="text_big">{{ item.scode || "无" }}</view>
21
+            </view>
22
+            <view class="page_item_cont_title">
23
+              <view> 标本类型 </view>
24
+              <view class="text_big">{{
25
+                item.stype ? item.stype.name : "无"
26
+              }}</view>
27
+            </view>
28
+            <view class="page_item_cont_title">
29
+              <view> 申请科室 </view>
30
+              <view class="text_big">{{
31
+                item.sickRoom ? item.sickRoom.dept : "无"
32
+              }}</view>
33
+            </view>
34
+            <view class="page_item_cont_title">
35
+              <view> 住院号 </view>
36
+              <view class="text_big">{{ item.residenceNo || "无" }}</view>
37
+            </view>
38
+          </view>
39
+        </view>
40
+        <view class="L"></view>
41
+        <view class="R"></view>
42
+      </view>
43
+      <view class="L-l"></view>
44
+      <view class="R-l"></view>
45
+    </view>
46
+    <view class="foot_btn2">
47
+      <view class="btn2" @click="goto()">返回</view>
48
+    </view>
49
+  </view>
50
+</template>
51
+<script>
52
+  import {
53
+    get,
54
+    post,
55
+    webHandle
56
+  } from "../../http/http.js";
57
+  export default {
58
+    data() {
59
+      return {
60
+        workOrderId: 0,
61
+        associationTypeValue: '',
62
+        list: [],
63
+      };
64
+    },
65
+    methods: {
66
+      getList() {
67
+        uni.showLoading({
68
+          mask: true,
69
+          title: "加载中",
70
+        });
71
+        let postData = {
72
+          "idx": 0,
73
+          "sum": 10,
74
+          "specimen": {
75
+            "gdid": this.workOrderId,
76
+            "hosId": uni.getStorageSync('userData').user.currentHospital.id
77
+          }
78
+        };
79
+        post(`/simple/data/fetchDataList/specimen`, postData).then((res) => {
80
+          uni.hideLoading();
81
+          uni.stopPullDownRefresh();
82
+          if (res.status == 200) {
83
+            this.list = res.list;
84
+          } else {
85
+            uni.showToast({
86
+              icon: "none",
87
+              title: "请求失败!",
88
+            });
89
+          }
90
+        });
91
+      },
92
+      // 返回
93
+      goto() {
94
+        uni.navigateTo({
95
+          url: `../receipt_infopage/receipt_infopage?id=${this.workOrderId}&associationTypeValue=${this.associationTypeValue}`,
96
+        });
97
+      },
98
+    },
99
+    onLoad(options) {
100
+      console.log(options, "标本详情");
101
+      this.workOrderId = options.workOrderId;
102
+      this.associationTypeValue = options.associationTypeValue;
103
+      this.getList();
104
+      // #ifdef APP-PLUS
105
+      webHandle("no", "app");
106
+      // #endif
107
+      // #ifdef H5
108
+      webHandle("no", "wx");
109
+      // #endif
110
+    },
111
+    onPullDownRefresh() {
112
+      this.getList();
113
+    },
114
+  };
115
+</script>
116
+<style lang="less" scoped>
117
+  .specimenCheckingDetail {
118
+    padding-bottom: 100rpx;
119
+
120
+    .page_header {
121
+      margin: 20rpx;
122
+      padding: 16rpx;
123
+      border: 2rpx solid #e5e9ed;
124
+      background: #fff;
125
+      border-radius: 8rpx;
126
+
127
+      .page_header_item {
128
+        margin-bottom: 16rpx;
129
+
130
+        .page_header_title {
131
+          margin-bottom: 8rpx;
132
+          font-weight: bold;
133
+        }
134
+
135
+        .page_header_content {
136
+          display: flex;
137
+
138
+          image {
139
+            height: 100rpx;
140
+            width: 30%;
141
+            margin: 0 8rpx;
142
+          }
143
+        }
144
+      }
145
+    }
146
+
147
+    .page_item_wrap {
148
+      width: 100%;
149
+      height: auto;
150
+      box-sizing: border-box;
151
+      position: relative;
152
+      margin-bottom: 16rpx;
153
+
154
+      .page_item {
155
+        margin-top: 16rpx;
156
+        margin-bottom: 124rpx;
157
+        background: #fff;
158
+        border-radius: 8rpx;
159
+        margin: 0 20rpx;
160
+        border: 2rpx solid #e5e9ed;
161
+        position: relative;
162
+        overflow: hidden;
163
+        padding: 0 16rpx;
164
+
165
+        .L {
166
+          width: 40rpx;
167
+          height: 40rpx;
168
+          border-radius: 50%;
169
+          background: #f9fafb;
170
+          position: absolute;
171
+          left: -20rpx;
172
+          top: 68rpx;
173
+          border: 2rpx solid #e5e9ed;
174
+        }
175
+
176
+        .R {
177
+          width: 40rpx;
178
+          height: 40rpx;
179
+          border-radius: 50%;
180
+          background: #f9fafb;
181
+          position: absolute;
182
+          float: right;
183
+          right: -20rpx;
184
+          top: 68rpx;
185
+          border: 2rpx solid #e5e9ed;
186
+        }
187
+
188
+        .starting {
189
+          width: 50rpx;
190
+          height: 50rpx;
191
+          color: #fff;
192
+          background: #49b856;
193
+          display: inline-block;
194
+          border-radius: 50%;
195
+          text-align: center;
196
+          line-height: 46rpx;
197
+          font-size: 32rpx;
198
+          margin-right: 6rpx;
199
+        }
200
+
201
+        .End {
202
+          width: 50rpx;
203
+          height: 50rpx;
204
+          color: #fff;
205
+          background: #39b199;
206
+          display: inline-block;
207
+          border-radius: 50%;
208
+          text-align: center;
209
+          line-height: 46rpx;
210
+          font-size: 32rpx;
211
+          margin-right: 6rpx;
212
+        }
213
+
214
+        .page_item_top {
215
+          height: 88rpx;
216
+          border-bottom: 2rpx dashed #e5e9ed;
217
+          padding: 0 16rpx;
218
+
219
+          .page_item_top-inner {
220
+            display: flex;
221
+            justify-content: space-between;
222
+            align-items: center;
223
+            height: 100%;
224
+
225
+            .page_item_top_L {
226
+              .emergencys {
227
+                background: #ff3b53 !important;
228
+                width: 124rpx !important;
229
+              }
230
+
231
+              .emergency {
232
+                background: #ff3b53 !important;
233
+              }
234
+
235
+              .emergency1 {
236
+                background: #49b856 !important;
237
+              }
238
+
239
+              .page_item_cont_start {
240
+                text-align: center;
241
+                height: 44rpx;
242
+                width: 104rpx;
243
+                line-height: 44rpx;
244
+                border-radius: 8rpx;
245
+                background: #49b856;
246
+                color: #fff;
247
+                display: inline-block;
248
+              }
249
+
250
+              .L_time {
251
+                color: #6cc076;
252
+                font-size: 32rpx;
253
+              }
254
+
255
+              .L_text {
256
+                font-size: 32rpx;
257
+                font-weight: 700;
258
+              }
259
+            }
260
+
261
+            .page_item_top_R {
262
+              font-size: 32rpx;
263
+
264
+              .back {
265
+                background-color: #49b856;
266
+              }
267
+
268
+              .L_iocn {
269
+                color: rgb(7, 134, 60);
270
+                font-size: 36rpx;
271
+                font-weight: 700;
272
+              }
273
+            }
274
+          }
275
+        }
276
+
277
+        .page_item_cont {
278
+          min-height: 90rpx;
279
+          padding: 0 16rpx;
280
+          text-align: left;
281
+          position: relative;
282
+
283
+          .text_big {
284
+            font-size: 32rpx;
285
+            font-weight: 700;
286
+            margin-top: 10rpx;
287
+
288
+            p {
289
+              font-weight: 700;
290
+              line-height: 1.5;
291
+            }
292
+          }
293
+
294
+          .page_item_cont_T {
295
+            padding-top: 28rpx;
296
+            padding-bottom: 28rpx;
297
+            font-size: 28rpx;
298
+
299
+            .page_item_cont_title {
300
+              height: 100%;
301
+              font-size: 32rpx;
302
+              display: flex;
303
+              justify-content: space-between;
304
+            }
305
+          }
306
+
307
+          .page_item_cont_B {
308
+            padding-top: 28rpx;
309
+            margin-bottom: 28rpx;
310
+
311
+            .page_item_cont_title {
312
+              font-size: 32rpx;
313
+              display: flex;
314
+              justify-content: space-between;
315
+            }
316
+
317
+            .page_item_cont_title1 {
318
+              height: 60rpx;
319
+              line-height: 60rpx;
320
+              font-size: 32rpx;
321
+              padding-left: 64rpx;
322
+            }
323
+          }
324
+        }
325
+
326
+        .page_item_foot {
327
+          border-top: 2rpx dashed #e5e9ed;
328
+          border-bottom: 2rpx dashed #e5e9ed;
329
+          padding: 28rpx 16rpx;
330
+          text-align: left;
331
+
332
+          .page_item_foot_text {
333
+            font-size: 32rpx;
334
+            margin-bottom: 20rpx;
335
+
336
+            .text1 {
337
+              color: rgb(102, 102, 102);
338
+            }
339
+
340
+            .text2 {
341
+              float: right;
342
+              font-weight: 700;
343
+            }
344
+          }
345
+        }
346
+
347
+        #infos {
348
+          display: none;
349
+        }
350
+
351
+        .page_item_infos {
352
+          padding-bottom: 20rpx;
353
+          border-bottom: 2rpx dashed #e5e9ed;
354
+
355
+          .page_item_info2 {
356
+            text-align: left;
357
+            line-height: 60rpx;
358
+            font-size: 32rpx;
359
+            padding-left: 16rpx;
360
+
361
+            .page_item_foot_text {
362
+              font-size: 32rpx;
363
+              margin-bottom: 20rpx;
364
+
365
+              .text1 {
366
+                color: rgb(102, 102, 102);
367
+              }
368
+
369
+              .text2 {
370
+                float: right;
371
+                font-weight: 700;
372
+              }
373
+            }
374
+          }
375
+        }
376
+      }
377
+
378
+      .L-l {
379
+        width: 2rpx;
380
+        height: 40rpx;
381
+        background: #f9fafb;
382
+        position: absolute;
383
+        left: 20rpx;
384
+        top: 72rpx;
385
+      }
386
+
387
+      .R-l {
388
+        width: 2rpx;
389
+        height: 40rpx;
390
+        background: #f9fafb;
391
+        position: absolute;
392
+        right: 20rpx;
393
+        top: 72rpx;
394
+      }
395
+    }
396
+
397
+    .foot_btn2 {
398
+      position: fixed;
399
+      bottom: 0;
400
+      width: 100vw;
401
+      padding: 0 20rpx;
402
+      box-sizing: border-box;
403
+      line-height: 66rpx;
404
+      height: 100rpx;
405
+      border-top: 2rpx solid #e5e9ed;
406
+      background: #f9fafb;
407
+      text-align: center;
408
+      display: flex;
409
+      justify-content: center;
410
+      align-items: center;
411
+
412
+      .btn2 {
413
+        height: 66rpx;
414
+        flex: 1;
415
+        margin: 16rpx 16rpx 0;
416
+        background-image: linear-gradient(to right, #72c172, #3bb197);
417
+        color: #fff;
418
+        border-radius: 8rpx;
419
+        font-size: 32rpx;
420
+      }
421
+    }
422
+  }
423
+</style>