Pārlūkot izejas kodu

快捷建单功能修改

seimin 1 gadu atpakaļ
vecāks
revīzija
b385299517

+ 2 - 2
components/bigScreen/bigScreen.vue

@@ -170,7 +170,7 @@
170 170
         });
171 171
       },
172 172
       // 底部扫描
173
-      Scanning() {
173
+      Scanning(qrcodePrefix = '') {
174 174
         if (!this.SMFlag) {
175 175
           return;
176 176
         }
@@ -193,7 +193,7 @@
193 193
                   code: result.code, //二维码
194 194
                 };
195 195
                 //微信—大扫描(科室码,患者码,标本码,快捷建单码,药包码)
196
-                post("/workerOrder/scanCode", data)
196
+                post("/workerOrder/scanCode", { code: qrcodePrefix + result.code })
197 197
                   .then((res) => {
198 198
                     uni.hideLoading();
199 199
                     if (res.status == 200) {

+ 12 - 1
components/showModel/showModel.vue

@@ -56,6 +56,13 @@
56 56
           >{{ operate.ok || "" }}</view
57 57
         >
58 58
         <view
59
+          v-if="operate.no"
60
+          class="showModel__ok"
61
+          @click="no"
62
+          hover-class="seimin-btn-hover"
63
+          >{{ operate.no || "" }}</view
64
+        >
65
+        <view
59 66
           v-if="operate.cancel"
60 67
           class="showModel__cancel"
61 68
           @click="cancel"
@@ -178,6 +185,10 @@ export default {
178 185
     ok() {
179 186
       this.$emit("ok");
180 187
     },
188
+    // 否
189
+    no() {
190
+      this.$emit("no");
191
+    },
181 192
     // 取消
182 193
     cancel() {
183 194
       this.$emit("cancel");
@@ -311,7 +322,7 @@ export default {
311 322
         color: rgb(102, 102, 102);
312 323
         position: relative;
313 324
 
314
-        &:nth-of-type(2)::before {
325
+        & ~ view::before {
315 326
           content: "";
316 327
           position: absolute;
317 328
           left: 0;

+ 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.29');
7
+console.info('v2.4.30');
8 8
 Vue.prototype.wx = wx //声明扫码
9 9
 Vue.prototype.audios = [] //待播放的语音集合
10 10
 // #endif

+ 82 - 20
pages/receiptpage/receiptpage.vue

@@ -281,7 +281,14 @@
281 281
       </scroll-view>
282 282
     </view>
283 283
     <!-- 底部扫一扫 -->
284
-    <bigScreen></bigScreen>
284
+    <view class="bigScreenWrap">
285
+      <bigScreen ref="bigscreen"></bigScreen>
286
+      <view class="more"></view>
287
+      <picker class="more_picker" @click.stop @change="execFilterBigScreen($event)" :value="indexBigScreen"
288
+        :range="arrayBigScreen" range-key="name">
289
+        <view class="uni-input">{{ arrayBigScreen[indexBigScreen].name }}</view>
290
+      </picker>
291
+    </view>
285 292
     <!-- 悬浮按钮 -->
286 293
     <uni-fab :pattern="pattern" :content="content" :direction="direction" @trigger="trigger"></uni-fab>
287 294
     <!-- 弹窗 -->
@@ -361,8 +368,12 @@
361 368
             name: "执行中",
362 369
           },
363 370
         ],
371
+        // 筛选条件
372
+        arrayBigScreen: [],
364 373
         index: 0,
374
+        indexBigScreen: 0,
365 375
         arrayKey: 0,
376
+        arrayKeyBigScreen: 0,
366 377
         // 当前登录人是否是药房角色
367 378
         pharmacistFlag: false,
368 379
         // 抢单的id
@@ -548,6 +559,18 @@
548 559
         this.selectedLabelSlots = "执行中";
549 560
         this.executingOrders(0);
550 561
       },
562
+      // 大扫描筛选
563
+      execFilterBigScreen({
564
+        detail: {
565
+          value
566
+        }
567
+      }) {
568
+        this.indexBigScreen = value;
569
+        this.arrayKeyBigScreen = this.arrayBigScreen[value].id;
570
+        console.log(this.arrayKeyBigScreen);
571
+        console.log(this.$refs.bigscreen);
572
+        this.$refs.bigscreen.Scanning(this.arrayKeyBigScreen);
573
+      },
551 574
       // 获取科室二维码设置开关
552 575
       getMenu() {
553 576
         let menu = uni.getStorageSync("userData").menu;
@@ -558,6 +581,7 @@
558 581
         );
559 582
         //判断当前登陆人具体角色 end
560 583
         console.log(menu);
584
+        this.arrayBigScreen = [];
561 585
         menu.forEach((item) => {
562 586
           if (item.link === "wxInspect") {
563 587
             this.content.push({
@@ -594,6 +618,31 @@
594 618
             this.content.push({
595 619
               text: "我的二维码",
596 620
             });
621
+          } else if (item.link === "BIAOBEN") {
622
+            this.arrayBigScreen.push({
623
+              id: 'BIAOBEN|$|',
624
+              name: "标本",
625
+            });
626
+          } else if (item.link === "YAOPING") {
627
+            this.arrayBigScreen.push({
628
+              id: 'YAOPING|$|',
629
+              name: "药品",
630
+            });
631
+          } else if (item.link === "HUANZHE") {
632
+            this.arrayBigScreen.push({
633
+              id: 'HUANZHE|$|',
634
+              name: "患者",
635
+            });
636
+          } else if (item.link === "XIEZHIPING") {
637
+            this.arrayBigScreen.push({
638
+              id: 'XIEZHIPING|$|',
639
+              name: "血制品",
640
+            });
641
+          } else if (item.link === "KJJD") {
642
+            this.arrayBigScreen.push({
643
+              id: 'KJJD|$|',
644
+              name: "快捷建单",
645
+            });
597 646
           }
598 647
         });
599 648
       },
@@ -1407,6 +1456,38 @@
1407 1456
     width: 100%;
1408 1457
     height: 100%;
1409 1458
     position: relative;
1459
+    
1460
+    .more {
1461
+      position: absolute;
1462
+      right: 20rpx;
1463
+      width: 40rpx;
1464
+      height: 4rpx;
1465
+      border-top: 2px solid #49b856;
1466
+      border-bottom: 2px solid #49b856;
1467
+      background-color: #49b856;
1468
+      padding: 5px 0;
1469
+      background-clip: content-box;
1470
+      z-index: 9999;
1471
+      top: 50%;
1472
+      transform: translateY(-50%);
1473
+    }
1474
+    
1475
+    .more_picker {
1476
+      position: absolute;
1477
+      right: 0;
1478
+      height: 100%;
1479
+      opacity: 0;
1480
+      z-index: 9999;
1481
+    }
1482
+    
1483
+    .bigScreenWrap{
1484
+      position: fixed;
1485
+      left: 0;
1486
+      right: 0;
1487
+      bottom: 30rpx;
1488
+      z-index: 999;
1489
+      height: 88rpx;
1490
+    }
1410 1491
 
1411 1492
     .red {
1412 1493
       color: red !important;
@@ -1446,25 +1527,6 @@
1446 1527
           margin-left: 8rpx;
1447 1528
         }
1448 1529
 
1449
-        .more {
1450
-          position: absolute;
1451
-          right: 20rpx;
1452
-          width: 40rpx;
1453
-          height: 4rpx;
1454
-          border-top: 2px solid #49b856;
1455
-          border-bottom: 2px solid #49b856;
1456
-          background-color: #49b856;
1457
-          padding: 5px 0;
1458
-          background-clip: content-box;
1459
-        }
1460
-
1461
-        .more_picker {
1462
-          position: absolute;
1463
-          right: 0;
1464
-          height: 100%;
1465
-          opacity: 0;
1466
-        }
1467
-
1468 1530
         &.active {
1469 1531
           color: #49b856;
1470 1532
 

+ 4 - 1
pages/shortcutbuildOrders/shortcutbuildOrders.vue

@@ -50,6 +50,7 @@
50 50
 <script>
51 51
   import {
52 52
     get,
53
+    post,
53 54
     webHandle
54 55
   } from "../../http/http.js";
55 56
   export default {
@@ -72,7 +73,9 @@
72 73
                 mask: true,
73 74
                 title: '加载中'
74 75
               })
75
-              get(`/workerOrder/createQuickOrder/${this.msg.id}`, {}).then((res) => {
76
+              post(`/workerOrder/createQuickOrder`, {
77
+                id: this.msg.id
78
+              }).then((res) => {
76 79
                 console.log(res)
77 80
                 uni.hideLoading();
78 81
                 if (res.status == 200) {

+ 130 - 34
pages/specimenChecking/specimenChecking.vue

@@ -37,17 +37,28 @@
37 37
     <changeSpeNum v-if="changeSpeModels.disjunctor" :operate="{ok:'确认数量',check:'详细核对',cancel:'取消'}" :title="changeSpeModels.title" :content="changeSpeModels.content"
38 38
       :disjunctor="changeSpeModels.disjunctor" @ok="changeSpeOk" @check="changeSpeCheck" @cancel="changeSpeCancel" :num="speNumChange">
39 39
     </changeSpeNum>
40
+    <!-- 弹窗 -->
41
+    <showModel :title="models.title" :icon="models.icon" :disjunctor="models.disjunctor" :content="models.content"
42
+      @ok="ok" @no="no" @cancel="cancel" @know="know" :operate="models.operate"></showModel>
40 43
   </view>
41 44
 </template>
42 45
 <script>
46
+  import showModel from "../../components/showModel/showModel.vue";
43 47
   import {
44 48
     get,
45 49
     post,
46 50
     webHandle
47 51
   } from "../../http/http.js";
48 52
   export default {
53
+    components: {
54
+      showModel,
55
+    },
49 56
     data() {
50 57
       return {
58
+        // 弹窗model
59
+        models: {
60
+          disjunctor: false,
61
+        },
51 62
         list: [],
52 63
         msg: {}, //页面展示信息
53 64
         // 修改标本数量弹窗model
@@ -59,6 +70,52 @@
59 70
       };
60 71
     },
61 72
     methods: {
73
+      //确认数量并建单-知道了
74
+      know() {
75
+        this.models.disjunctor = false;
76
+      },
77
+      //确认数量并建单-确定
78
+      ok() {
79
+        this.models.disjunctor = false;
80
+        const speNumNot0Depts = this.list.filter(v => v.speNum !== 0);
81
+        const speNumNot0DeptsStr = speNumNot0Depts.map(v => v.deptId).toString();
82
+        uni.showLoading({
83
+          mask: true,
84
+          title: '加载中'
85
+        })
86
+        post(`/workerOrder/createQuickOrder`, {
87
+          id: this.msg.id,
88
+          notEmptyEndDeptIds: speNumNot0DeptsStr || undefined,
89
+        }).then((res) => {
90
+          uni.hideLoading();
91
+          if (res.status == 200) {
92
+            if (res.type === 'plan-spe-ddd-2') {
93
+              //需要扫描标本
94
+              uni.navigateTo({
95
+                url: `../../pages/scanning_code/scanning_code?type=${res.associationTypeName}&type1=${res.type}&id=${res.id}&deptCode=${res.deptCode}&dept=${res.deptName}&accountObj=undefined&endDepts=${this.msg.targetDept}&deptId=${res.deptId}`,
96
+              });
97
+            } else {
98
+              uni.navigateTo({
99
+                url: "../receiptpage/receiptpage",
100
+              });
101
+            }
102
+          } else {
103
+            uni.showToast({
104
+              icon: "none",
105
+              title: "请求失败!",
106
+            });
107
+          }
108
+        });
109
+      },
110
+      //确认数量并建单-否
111
+      no() {
112
+        this.models.disjunctor = false;
113
+        this.createOrderFun();
114
+      },
115
+      //确认数量并建单-取消
116
+      cancel() {
117
+        this.models.disjunctor = false;
118
+      },
62 119
       // 数量核对 start
63 120
       // 修改标本数量-核对
64 121
       changeSpeCheck(){
@@ -341,45 +398,84 @@
341 398
           url: `../../pages/receiptpage/receiptpage`,
342 399
         });
343 400
       },
344
-      // 确认数量并建单
345
-      createOrder() {
346
-        uni.showModal({
347
-          title: '提示',
348
-          content: "您确认建单吗?",
349
-          success: (res) => {
350
-            if (res.confirm) {
351
-              console.log('用户点击确定');
352
-              uni.showLoading({
353
-                mask: true,
354
-                title: '加载中'
355
-              })
356
-              get(`/workerOrder/createQuickOrder/${this.msg.id}`, {}).then((res) => {
357
-                console.log(res)
358
-                uni.hideLoading();
359
-                if (res.status == 200) {
360
-                  if (res.type === 'plan-spe-ddd-2') {
361
-                    //需要扫描标本
362
-                    uni.navigateTo({
363
-                      url: `../../pages/scanning_code/scanning_code?type=${res.associationTypeName}&type1=${res.type}&id=${res.id}&deptCode=${res.deptCode}&dept=${res.deptName}&accountObj=undefined&endDepts=${this.msg.targetDept}&deptId=${res.deptId}`,
364
-                    });
365
-                  } else {
366
-                    uni.navigateTo({
367
-                      url: "../receiptpage/receiptpage",
368
-                    });
369
-                  }
370
-                } else {
371
-                  uni.showToast({
372
-                    icon: "none",
373
-                    title: "请求失败!",
374
-                  });
375
-                }
401
+      // 确认数量并建单-方法
402
+      createOrderFun(){
403
+        uni.showLoading({
404
+          mask: true,
405
+          title: '加载中'
406
+        })
407
+        post(`/workerOrder/createQuickOrder`, {
408
+          id: this.msg.id,
409
+        }).then((res) => {
410
+          console.log(res)
411
+          uni.hideLoading();
412
+          if (res.status == 200) {
413
+            if (res.type === 'plan-spe-ddd-2') {
414
+              //需要扫描标本
415
+              uni.navigateTo({
416
+                url: `../../pages/scanning_code/scanning_code?type=${res.associationTypeName}&type1=${res.type}&id=${res.id}&deptCode=${res.deptCode}&dept=${res.deptName}&accountObj=undefined&endDepts=${this.msg.targetDept}&deptId=${res.deptId}`,
417
+              });
418
+            } else {
419
+              uni.navigateTo({
420
+                url: "../receiptpage/receiptpage",
376 421
               });
377
-            } else if (res.cancel) {
378
-              console.log('用户点击取消');
379 422
             }
423
+          } else {
424
+            uni.showToast({
425
+              icon: "none",
426
+              title: "请求失败!",
427
+            });
380 428
           }
381 429
         });
382 430
       },
431
+      // 确认数量并建单
432
+      createOrder() {
433
+        console.log(this.list);
434
+        const speNum0Depts = this.list.filter(v => v.speNum === 0);
435
+        const speNumNot0Depts = this.list.filter(v => v.speNum !== 0);
436
+        if(!speNumNot0Depts.length){
437
+          uni.showModal({
438
+            title: '提示',
439
+            content: "您所有科室本轮配送均无标本,无法建单!",
440
+            showCancel: false,
441
+            success: (res) => {
442
+              if (res.confirm) {
443
+                console.log('用户点击确定');
444
+              } else if (res.cancel) {
445
+                console.log('用户点击取消');
446
+              }
447
+            }
448
+          });
449
+        }else{
450
+          if(speNum0Depts.length){
451
+            const speNum0DeptsName = speNum0Depts.map(v => v.deptName).toString();
452
+            this.models = {
453
+              disjunctor: true,
454
+              title: "提示",
455
+              content: `您有科室本轮配送无标本,是否清除。科室分别为:<span class="red">${speNum0DeptsName}</span>`,
456
+              icon: "warn",
457
+              operate: {
458
+                ok: "是",
459
+                no: '否',
460
+                cancel: "取消",
461
+              },
462
+            };
463
+          }else{
464
+            uni.showModal({
465
+              title: '提示',
466
+              content: "您确认建单吗?",
467
+              success: (res) => {
468
+                if (res.confirm) {
469
+                  console.log('用户点击确定');
470
+                  this.createOrderFun();
471
+                } else if (res.cancel) {
472
+                  console.log('用户点击取消');
473
+                }
474
+              }
475
+            });
476
+          }
477
+        }
478
+      },
383 479
     },
384 480
     onLoad(options) {
385 481
       console.log(options, "快捷建单");