seimin 1 年之前
父节点
当前提交
669779487e
共有 3 个文件被更改,包括 58 次插入24 次删除
  1. 9 10
      pages.json
  2. 40 5
      pages/scanning_all/scanning_all.vue
  3. 9 9
      pages/specimenHandoverNew/specimenHandoverNew.vue

+ 9 - 10
pages.json

@@ -512,17 +512,16 @@
512 512
         }
513 513
       }
514 514
 
515
+    }, {
516
+      "path": "pages/specimenOrderComplete/specimenOrderComplete",
517
+      "style": {
518
+        "h5": {
519
+          "titleNView": false
520
+        }
521
+      }
522
+
515 523
     }
516
-      ,{
517
-            "path" : "pages/specimenOrderComplete/specimenOrderComplete",
518
-            "style" :                                                                                    
519
-            {
520
-                "navigationBarTitleText": "",
521
-                "enablePullDownRefresh": false
522
-            }
523
-            
524
-        }
525
-    ],
524
+  ],
526 525
   "globalStyle": {
527 526
     "navigationBarTextStyle": "black",
528 527
     "navigationBarBackgroundColor": "#F8F8F8",

+ 40 - 5
pages/scanning_all/scanning_all.vue

@@ -280,11 +280,50 @@
280 280
           url: "../receiptpage/receiptpage",
281 281
         });
282 282
       },
283
+      // 标本配送-待送达-运输过程-标本数字交接,则,科室签到不需要填写交接人
284
+      validateHandoverSpecimen(){
285
+        return post("/simple/data/fetchDataList/taskType", {
286
+          "idx": 0,
287
+          "sum": 1,
288
+          "taskType": {
289
+              "hosId": {
290
+                  "id": this.hosId
291
+              },
292
+              "associationType": {
293
+                  "key": "association_types",
294
+                  "value": "specimen"
295
+              }
296
+          }
297
+        });
298
+      },
283 299
       //科室签到
284 300
       //trueBigScanner----判断是否大扫描
285 301
       //bigScanner----判断是否需要交接人
286 302
       //accountObj----弹窗填写的交接人信息
287
-      orderDeptHandler(bigScanner, accountObj) {
303
+      async orderDeptHandler(bigScanner, accountObj) {
304
+        console.log(this.infoDATA);
305
+        uni.showLoading({
306
+          title: "加载中",
307
+          mask: true,
308
+        });
309
+        if(this.tabType === 'specimen' && this.infoDATA.specimen && this.infoDATA.specimen[0].gdState.value == 5){
310
+          let result = await this.validateHandoverSpecimen();
311
+          if (result.status == 200) {
312
+            if(result.list.length){
313
+              // 标本-运送过程-终点科室-标本数字交接
314
+              if(result.list[0].carryingCourses[1].checkoutMethod.value == 3){
315
+                bigScanner = false;
316
+              }
317
+            }else{
318
+              uni.showToast({
319
+                icon: "none",
320
+                title: "请配置标本配送任务类型!",
321
+              });
322
+              uni.hideLoading();
323
+              return;
324
+            }
325
+          }
326
+        }
288 327
         let type = "orderSign/" + this.code;
289 328
         let list = {
290 329
           ids: this.userId.ids,
@@ -294,10 +333,6 @@
294 333
         if (accountObj) {
295 334
           list.handover = [accountObj.accountId];
296 335
         }
297
-        uni.showLoading({
298
-          title: "加载中",
299
-          mask: true,
300
-        });
301 336
         post("/workerOrder/" + type, list).then((res) => {
302 337
           console.log(this.tabType)
303 338
           uni.hideLoading();

+ 9 - 9
pages/specimenHandoverNew/specimenHandoverNew.vue

@@ -22,17 +22,17 @@
22 22
           <view class="name" v-if="type === 'patient'">
23 23
             患者名称<text class="red">({{typeList.patient.titleCount}})</text>
24 24
           </view>
25
-          <view class="name" v-if="type === 'checkType'">
26
-            项目名称<text class="red">({{typeList.patient.titleCount}})</text>
25
+          <view class="name" v-if="type === 'specimenDesc'">
26
+            项目名称<text class="red">({{typeList.specimenDesc.titleCount}})</text>
27 27
           </view>
28 28
           <view class="value" v-if="type === 'patient'">
29 29
             <view>
30 30
               标本数量<text class="red">({{typeList.patient.count}})</text>
31 31
             </view>
32 32
           </view>
33
-          <view class="value" v-if="type === 'checkType'">
33
+          <view class="value" v-if="type === 'specimenDesc'">
34 34
             <view>
35
-              标本数量<text class="red">({{typeList.patient.count}})</text>
35
+              标本数量<text class="red">({{typeList.specimenDesc.count}})</text>
36 36
             </view>
37 37
           </view>
38 38
         </view>
@@ -41,8 +41,8 @@
41 41
             <view class="name" v-if="type === 'patient'">
42 42
               {{item.patientname}}
43 43
             </view>
44
-            <view class="name" v-if="type === 'checkType'">
45
-              {{item.stype}}
44
+            <view class="name" v-if="type === 'specimenDesc'">
45
+              {{item.specimen_desc}}
46 46
             </view>
47 47
             <view class="value">
48 48
               <view>
@@ -78,7 +78,7 @@
78 78
     data() {
79 79
       return {
80 80
         hosId: uni.getStorageSync('userData').user.currentHospital.id,
81
-        type: 'patient',//patient|checkType
81
+        type: 'patient',//patient|specimenDesc
82 82
         queryObj: {}, //路由传递过来的数据
83 83
         typeList: {
84 84
           "patient": {
@@ -87,7 +87,7 @@
87 87
             count: 0,
88 88
             titleCount: 0,
89 89
           },
90
-          "checkType": {
90
+          "specimenDesc": {
91 91
             id: -2,
92 92
             name: '检验项目',
93 93
             count: 0,
@@ -283,7 +283,7 @@
283 283
       },
284 284
       initData(){
285 285
         this.getInfo('patient');
286
-        this.getInfo('checkType');
286
+        this.getInfo('specimenDesc');
287 287
       },
288 288
     },
289 289
     onLoad(options) {