Browse Source

列表增加追加执行人

seimin 1 year ago
parent
commit
4cc93c9234
3 changed files with 254 additions and 21 deletions
  1. 1 1
      main.js
  2. 16 17
      pages/receipt_infopage/receipt_infopage.vue
  3. 237 3
      pages/receiptpage/receiptpage.vue

+ 1 - 1
main.js

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

+ 16 - 17
pages/receipt_infopage/receipt_infopage.vue

@@ -426,8 +426,8 @@
426 426
       @cancel="hosCancel">
427 427
     </selectAccount>
428 428
     <!-- 手动查询弹窗 -->
429
-    <checkboxModal v-if="speModels.disjunctor" :content="speModels.content" :disjunctor="speModels.disjunctor"
430
-      @ok="speOk" @cancel="speCancel">
429
+    <checkboxModal v-if="checkboxModels.disjunctor" :content="checkboxModels.content" :disjunctor="checkboxModels.disjunctor"
430
+      @ok="checkboxOk" @cancel="checkboxCancel">
431 431
     </checkboxModal>
432 432
   </view>
433 433
 </template>
@@ -455,7 +455,7 @@
455 455
           data: {},
456 456
         },
457 457
         // 手动查询弹窗model
458
-        speModels: {
458
+        checkboxModels: {
459 459
           disjunctor: false,
460 460
         },
461 461
         taskTypeConfig: {},
@@ -520,15 +520,15 @@
520 520
     },
521 521
     methods: {
522 522
       // 手动查询-确认
523
-      speOk(bulkCopy) {
523
+      checkboxOk(bulkCopy) {
524 524
         console.log(bulkCopy);
525
-        this.speModels.disjunctor = false;
525
+        this.checkboxModels.disjunctor = false;
526 526
         let { user, data } = this.other;
527 527
         this.additionalUserCommon(user, data.id, data.worker.id, bulkCopy);
528 528
       },
529 529
       // 手动查询-取消
530
-      speCancel() {
531
-        this.speModels.disjunctor = false;
530
+      checkboxCancel() {
531
+        this.checkboxModels.disjunctor = false;
532 532
       },
533 533
       // 手动查询弹窗
534 534
       showCheckboxModal(user, data) {
@@ -536,7 +536,7 @@
536 536
           user,
537 537
           data,
538 538
         };
539
-        this.speModels = {
539
+        this.checkboxModels = {
540 540
           content: `您要最追加的人员为${user.name},您确认要追加吗?`,
541 541
           disjunctor: true,
542 542
         }
@@ -1105,7 +1105,7 @@
1105 1105
           };
1106 1106
         }
1107 1107
       },
1108
-      // 追加陪检人按钮
1108
+      // 追加陪检人/执行人按钮
1109 1109
       additionalUser(data) {
1110 1110
         if (!this.SMFlag) {
1111 1111
           return;
@@ -1139,6 +1139,7 @@
1139 1139
                 user = result.code;
1140 1140
               }
1141 1141
               if(Object.prototype.toString.call(user).slice(8, -1).toLowerCase() === 'object' && user.type == 'myQrCode' && user.id && user.name){
1142
+                user.qrcode = ress1;
1142 1143
                 uni.hideLoading();
1143 1144
                 if(data.taskType.associationType.value == 'other'){
1144 1145
                   this.showCheckboxModal(user, data);
@@ -1165,7 +1166,7 @@
1165 1166
                   if(result.status == 200){
1166 1167
                     result.list = result.list || [];
1167 1168
                     if(result.list.length){
1168
-                      let user = {name: result.list[0].name, identityCardNumber};
1169
+                      let user = {name: result.list[0].name, identityCardNumber, qrcode: ress1};
1169 1170
                       if(data.taskType.associationType.value == 'other'){
1170 1171
                         this.showCheckboxModal(user, data);
1171 1172
                       }else{
@@ -1210,7 +1211,7 @@
1210 1211
           this.SMFlag = true;
1211 1212
         });
1212 1213
       },
1213
-      // 追加陪检人
1214
+      // 追加陪检人/执行人
1214 1215
       additionalUserCommon(user, gdId, workerId, bulkCopy) {
1215 1216
         console.log(user, gdId, workerId, bulkCopy);
1216 1217
         uni.showLoading({
@@ -1227,18 +1228,16 @@
1227 1228
         }).then((result) => {
1228 1229
           uni.hideLoading();
1229 1230
           if (result.state == 200) {
1230
-            this.getInfo(this.dataId);
1231
+            this.getInfo(gdId);
1231 1232
             uni.showToast({
1232 1233
               icon: 'none',
1233 1234
               duration: 4000,
1234 1235
               title: '操作成功!'
1235 1236
             })
1236 1237
           } else {
1237
-            uni.showToast({
1238
-              icon: 'none',
1239
-              duration: 4000,
1240
-              title: result.msg || '操作失败!'
1241
-            })
1238
+            uni.navigateTo({
1239
+              url: `../result_error/result_error?qrcode=${user.qrcode}&msg=${result.msg || '接口获取数据失败!'}`,
1240
+            });
1242 1241
           }
1243 1242
         });
1244 1243
       },

+ 237 - 3
pages/receiptpage/receiptpage.vue

@@ -277,8 +277,9 @@
277 277
               <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>
278 278
               <!-- 其他临床服务-拍照 -->
279 279
               <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>
280
-              
281 280
               <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>
281
+              <!-- 其他临床服务-追加 -->
282
+              <view v-if="item.taskType.associationType.value == 'other' && item.worker && item.worker.id && clinicalMultiplayerMode === 1 && showAppendUser === 1 && item.clinicalTaskIdsFlag" class="page_item_btn" @click="additionalUser(item)" hover-class="seimin-btn-hover">追加</view>
282 283
             </view>
283 284
             <view class="page_item_btn" v-if="selectedLabelSlots == '待接单'" @click="showAlerts(item)" hover-class="seimin-btn-hover">接单</view>
284 285
           </view>
@@ -315,6 +316,10 @@
315 316
     <selectAccount v-if="hosModels.disjunctor" :title="hosModels.title" :disjunctor="hosModels.disjunctor" @ok="hosOk"
316 317
       @cancel="hosCancel">
317 318
     </selectAccount>
319
+    <!-- 手动查询弹窗 -->
320
+    <checkboxModal v-if="checkboxModels.disjunctor" :content="checkboxModels.content" :disjunctor="checkboxModels.disjunctor"
321
+      @ok="checkboxOk" @cancel="checkboxCancel">
322
+    </checkboxModal>
318 323
   </view>
319 324
 </template>
320 325
 <script>
@@ -338,6 +343,19 @@
338 343
   export default {
339 344
     data() {
340 345
       return {
346
+        otherAssociationTypeId: null,
347
+        hosId: uni.getStorageSync('userData').user.currentHospital.id,
348
+        clinicalMultiplayerMode: 0,
349
+        showAppendUser: 0,
350
+        clinicalTaskIds: [],
351
+        other: {
352
+          user: {},
353
+          data: {},
354
+        },
355
+        // 手动查询弹窗model
356
+        checkboxModels: {
357
+          disjunctor: false,
358
+        },
341 359
         // 填写交接人账号弹窗model
342 360
         hosModels: {
343 361
           disjunctor: false,
@@ -460,6 +478,219 @@
460 478
       selectAccount,
461 479
     },
462 480
     methods: {
481
+      async initList(){
482
+        uni.showLoading({
483
+          title: "加载中",
484
+          mask: true,
485
+        });
486
+        //获取其他临床服务业务类型
487
+        let res = await this.getOtherAssociationTypes();
488
+        let otherAssociationType = res.find(v => v.value === 'other');
489
+        this.otherAssociationTypeId = otherAssociationType ? otherAssociationType.id : null;
490
+        if(this.otherAssociationTypeId){
491
+          // 获取临床服务页面控制开关
492
+          let result = await this.getTaskOtherConfig();
493
+          if (result.status == 200) {
494
+            if(result.list && result.list[0]){
495
+              this.clinicalMultiplayerMode = result.list[0].clinicalMultiplayerMode;
496
+              this.showAppendUser = result.list[0].showAppendUser;
497
+              this.clinicalTaskIds = result.list[0].clinicalTaskIds ? result.list[0].clinicalTaskIds.split(',') : [] ;
498
+            }else{
499
+              this.clinicalMultiplayerMode = 0;
500
+              this.showAppendUser = 0;
501
+            }
502
+          } else {
503
+            this.clinicalMultiplayerMode = 0;
504
+            this.showAppendUser = 0;
505
+          }
506
+        }else{
507
+          uni.showToast({
508
+            icon: 'none',
509
+            title: '未设置其他临床服务业务类型!'
510
+          })
511
+        }
512
+        
513
+        this.waitingOrdersGetNum();
514
+        this.executingOrders(0);
515
+      },
516
+      //获取其他临床服务业务类型
517
+      getOtherAssociationTypes(){
518
+        return post('/common/common/getDictionary', {
519
+          "type": "list",
520
+          "key": "association_types"
521
+        });
522
+      },
523
+      // 获取临床服务页面控制开关
524
+      getTaskOtherConfig(){
525
+        return post("/simple/data/fetchDataList/taskTypeConfig", {
526
+            "idx": 0,
527
+            "sum": 10,
528
+            "taskTypeConfig": {
529
+                "hosId": this.hosId,
530
+                "associationType": this.otherAssociationTypeId,
531
+            }
532
+        });
533
+      },
534
+      // 手动查询-确认
535
+      checkboxOk(bulkCopy) {
536
+        console.log(bulkCopy);
537
+        this.checkboxModels.disjunctor = false;
538
+        let { user, data } = this.other;
539
+        this.additionalUserCommon(user, data.id, data.worker.id, bulkCopy);
540
+      },
541
+      // 手动查询-取消
542
+      checkboxCancel() {
543
+        this.checkboxModels.disjunctor = false;
544
+      },
545
+      // 手动查询弹窗
546
+      showCheckboxModal(user, data) {
547
+        this.other = {
548
+          user,
549
+          data,
550
+        };
551
+        this.checkboxModels = {
552
+          content: `您要最追加的人员为${user.name},您确认要追加吗?`,
553
+          disjunctor: true,
554
+        }
555
+      },
556
+      // 追加陪检人/执行人按钮
557
+      additionalUser(data) {
558
+        if (!this.SMFlag) {
559
+          return;
560
+        }
561
+        this.SMFlag = false;
562
+        console.log(data, 'data');
563
+        SM().then((ress1) => {
564
+          uni.showLoading({
565
+            title: "加载中",
566
+            mask: true,
567
+          });
568
+          //检验二维码的有效性
569
+          post("/dept/scanning", {
570
+            content: ress1,
571
+            taskTypeId: data.taskType.id,
572
+            gdState: data.gdState.id,
573
+          }).then((result) => {
574
+            this.SMFlag = true;
575
+            // this.currentCode = result.code;
576
+            if (result.state == 200 || result.state == 201) {
577
+              console.log(result);
578
+              let user;
579
+              try{
580
+                // json对象字符串
581
+                user = JSON.parse(result.code);
582
+                // 不是json对象字符串
583
+                if(Object.prototype.toString.call(user).slice(8, -1).toLowerCase() !== 'object'){
584
+                  user = result.code;
585
+                }
586
+              }catch(e){
587
+                user = result.code;
588
+              }
589
+              if(Object.prototype.toString.call(user).slice(8, -1).toLowerCase() === 'object' && user.type == 'myQrCode' && user.id && user.name){
590
+                user.qrcode = ress1;
591
+                uni.hideLoading();
592
+                if(data.taskType.associationType.value == 'other'){
593
+                  this.showCheckboxModal(user, data);
594
+                }else{
595
+                  uni.showModal({
596
+                    title: "提示",
597
+                    content: `您要最追加的人员为${user.name},您确认要追加吗?`,
598
+                    success: (res) => {
599
+                      if (res.confirm) {
600
+                        console.log("用户点击确定");
601
+                        this.additionalUserCommon(user, data.id, data.worker.id, false);
602
+                      } else if (res.cancel) {
603
+                        console.log("用户点击取消");
604
+                      }
605
+                    },
606
+                  });
607
+                }
608
+              }else if(Object.prototype.toString.call(user).slice(8, -1).toLowerCase() === 'string'){
609
+                let identityCardNumber = user;
610
+                // 根据身份证获取name
611
+                // todo
612
+                post("/data/fetchDataList/user", {idx: 0, sum: 1, user: { identityCardNumber }}).then((result) => {
613
+                  uni.hideLoading();
614
+                  if(result.status == 200){
615
+                    result.list = result.list || [];
616
+                    if(result.list.length){
617
+                      let user = {name: result.list[0].name, identityCardNumber, qrcode: ress1};
618
+                      if(data.taskType.associationType.value == 'other'){
619
+                        this.showCheckboxModal(user, data);
620
+                      }else{
621
+                        uni.showModal({
622
+                          title: "提示",
623
+                          content: `您要最追加的人员为${user.name},您确认要追加吗?`,
624
+                          success: (res) => {
625
+                            if (res.confirm) {
626
+                              console.log("用户点击确定");
627
+                              this.additionalUserCommon(user, data.id, data.worker.id, false);
628
+                            } else if (res.cancel) {
629
+                              console.log("用户点击取消");
630
+                            }
631
+                          },
632
+                        });
633
+                      }
634
+                    }else{
635
+                      uni.navigateTo({
636
+                        url: `../result_error/result_error?qrcode=${ress1}&msg=扫描二维码无法找到用户!`,
637
+                      });
638
+                    }
639
+                  }else{
640
+                    uni.navigateTo({
641
+                      url: `../result_error/result_error?qrcode=${ress1}&msg=请扫描正确的二维码!`,
642
+                    });
643
+                  }
644
+                })
645
+              }else{
646
+                uni.hideLoading();
647
+                uni.navigateTo({
648
+                  url: `../result_error/result_error?qrcode=${ress1}&msg=请扫描正确的二维码!`,
649
+                });
650
+              }
651
+            } else {
652
+              uni.hideLoading();
653
+              uni.navigateTo({
654
+                url: `../result_error/result_error?qrcode=${ress1}&msg=接口获取数据失败!`,
655
+              });
656
+            }
657
+          });
658
+        }).catch(err=>{
659
+          this.SMFlag = true;
660
+        });
661
+      },
662
+      // 追加陪检人/执行人
663
+      additionalUserCommon(user, gdId, workerId, bulkCopy) {
664
+        console.log(user, gdId, workerId, bulkCopy);
665
+        uni.showLoading({
666
+          title: "加载中",
667
+          mask: true,
668
+        });
669
+        // 二维码里有id则传userid,没有则传identityCardNumber
670
+        post("/workerOrder/additionalAccompanyingPersonnel", {
671
+          userId: user.id || undefined,
672
+          identityCardNumber: !user.id ? user.identityCardNumber : undefined,
673
+          gdId,
674
+          workerId,
675
+          bulkCopy: bulkCopy ? 1 : undefined,
676
+        }).then((result) => {
677
+          uni.hideLoading();
678
+          if (result.state == 200) {
679
+            uni.showToast({
680
+              icon: 'none',
681
+              duration: 4000,
682
+              title: '操作成功!'
683
+            })
684
+            uni.redirectTo({
685
+              url: `../receiptpage/receiptpage`,
686
+            });
687
+          } else {
688
+            uni.navigateTo({
689
+              url: `../result_error/result_error?qrcode=${user.qrcode}&msg=${result.msg || '接口获取数据失败!'}`,
690
+            });
691
+          }
692
+        });
693
+      },
463 694
       // 前往其他临床服务完成工单确认页面
464 695
       otherCompleteOrder(data){
465 696
         console.log(data);
@@ -1249,6 +1480,10 @@
1249 1480
             this.triggered = false;
1250 1481
             this.freshing = true;
1251 1482
             this.totalNum = res.data.resultCount;
1483
+            res.data.data = res.data.data || [];
1484
+            res.data.data.forEach(v => {
1485
+              v.clinicalTaskIdsFlag = this.clinicalTaskIds.includes(v.taskType.id.toString());
1486
+            })
1252 1487
             if (idx === 0) {
1253 1488
               this.zxzData = res.data.data;
1254 1489
             } else {
@@ -1426,8 +1661,7 @@
1426 1661
       // });
1427 1662
       // #endif
1428 1663
       this.selectedLabelSlots = "执行中";
1429
-      this.waitingOrdersGetNum();
1430
-      this.executingOrders(0);
1664
+      this.initList();
1431 1665
       // #ifdef APP-PLUS
1432 1666
       webHandle("no", "app");
1433 1667
       // #endif