소스 검색

标本药品功能优化

seimin 2 년 전
부모
커밋
7b33b2b89b

+ 170 - 5
components/bigScreen/bigScreen.vue

@@ -2,6 +2,10 @@
2 2
   <view class="toolbar" @click="Scanning()" hover-class="seimin-btn-hover">
3 3
     <text class="toolbar-icon icon_transport transport-saoma"></text>
4 4
     <text class="toolbar-sao">扫一扫</text>
5
+    <!-- 填写交接人账号弹窗 -->
6
+    <selectAccount v-if="hosModels.disjunctor" :title="hosModels.title" :disjunctor="hosModels.disjunctor" @ok="hosOk"
7
+      @cancel="hosCancel">
8
+    </selectAccount>
5 9
   </view>
6 10
 </template>
7 11
 
@@ -13,11 +17,156 @@
13 17
   export default {
14 18
     data() {
15 19
       return {
20
+        // 填写交接人账号弹窗model
21
+        hosModels: {
22
+          disjunctor: false,
23
+        },
24
+        userId: {
25
+          ids: [],
26
+        },
27
+        workData: [],
28
+        infoDATA: {},
29
+        tabType: "", //当前选中项
30
+        selectArr: [], //选中项
31
+        code: "",
16 32
         currentCode: '', //当前小扫描的科室二维码
17 33
         SMFlag: true,
18 34
       }
19 35
     },
20 36
     methods: {
37
+      // 填写交接人账号-确认
38
+      hosOk(data) {
39
+        console.log(data);
40
+        const {
41
+          accountName,
42
+          account,
43
+          accountId
44
+        } = data;
45
+        if (!accountName && !account) {
46
+          //没有填写交接人
47
+          uni.showModal({
48
+            title: "提示",
49
+            content: "请填写交接人账号!",
50
+            showCancel: false,
51
+            success: function(res) {
52
+              if (res.confirm) {
53
+                console.log("用户点击确定");
54
+              } else if (res.cancel) {
55
+                console.log("用户点击取消");
56
+              }
57
+            },
58
+          });
59
+          return;
60
+        } else if ((!accountName && account) || (accountName && !account)) {
61
+          //没有填写交接人
62
+          uni.showModal({
63
+            title: "提示",
64
+            content: "请填写正确的交接人账号!",
65
+            showCancel: false,
66
+            success: function(res) {
67
+              if (res.confirm) {
68
+                console.log("用户点击确定");
69
+              } else if (res.cancel) {
70
+                console.log("用户点击取消");
71
+              }
72
+            },
73
+          });
74
+          return;
75
+        }
76
+        this.hosModels.disjunctor = false;
77
+        this.orderDeptHandler(false, data);
78
+      },
79
+      // 填写交接人账号-取消
80
+      hosCancel() {
81
+        this.hosModels.disjunctor = false;
82
+        this.flag = true;
83
+      },
84
+      // 填写交接人账号弹窗
85
+      showSelectAccount() {
86
+        this.hosModels = {
87
+          title: "填写交接人账号",
88
+          disjunctor: true,
89
+        };
90
+      },
91
+      //科室签到
92
+      //trueBigScanner----判断是否大扫描
93
+      //bigScanner----判断是否需要交接人
94
+      //accountObj----弹窗填写的交接人信息
95
+      orderDeptHandler(bigScanner, accountObj) {
96
+        let type = "orderSign/" + this.code;
97
+        let list = {
98
+          ids: this.userId.ids,
99
+          trueBigScanner: ['666']
100
+        };
101
+        bigScanner && (list.bigScanner = ['666']);
102
+        if (accountObj) {
103
+          list.handover = [accountObj.accountId];
104
+        }
105
+        uni.showLoading({
106
+          title: "加载中",
107
+          mask: true,
108
+        });
109
+        post("/workerOrder/" + type, list).then((res) => {
110
+          console.log(this.tabType)
111
+          uni.hideLoading();
112
+          if (res.status == 200) {
113
+            if (this.tabType == 'specimenPlan') {
114
+              // -----------------------------
115
+              console.log(this.selectArr, '选中工单')
116
+              let gd = this.infoDATA.specimenPlan.find(v => v.id == this.selectArr[0]);
117
+              let startDeptId = gd.startDept.id; //起点科室id
118
+              let isDigitalHandover = gd.taskType.isDigitalHandover; //是否数字交接开关
119
+              let signDeptId = res.deptId; //签到的科室id
120
+              let gdId = gd.id;
121
+              let gdState = gd.gdState.value;
122
+              let endDepts = gd.endDepts.map(v => v.id).toString();
123
+              uni.navigateTo({
124
+                url: `../scanning_djEnd/scanning_djEnd?type=${
125
+                  this.tabType
126
+                }&type1=${res.type}&code=${this.code}&dept=${
127
+                  res.dept
128
+                }&ids=${encodeURIComponent(
129
+                  JSON.stringify(this.userId.ids)
130
+                )}&model=${encodeURIComponent(JSON.stringify(res))}&accountObj=${encodeURIComponent(JSON.stringify(accountObj))}&deptId=${res.deptId}&startDeptId=${startDeptId}&isDigitalHandover=${isDigitalHandover}&signDeptId=${signDeptId}&gdId=${gdId}&gdState=${gdState}&endDepts=${endDepts}`,
131
+              });
132
+            } else if (this.tabType == 'specimen') {
133
+              if (res.deptType && res.deptType.value === 'middleRoom') {
134
+                // 如果是中转科室
135
+                uni.navigateTo({
136
+                  url: `../checkAfterBigScreen/checkAfterBigScreen?type=${
137
+                  this.tabType
138
+                }&type1=${res.type}&code=${this.code}&dept=${
139
+                  res.dept
140
+                }&ids=${encodeURIComponent(
141
+                  JSON.stringify(this.userId.ids)
142
+                )}&model=${encodeURIComponent(JSON.stringify(res))}&accountObj=${encodeURIComponent(JSON.stringify(accountObj))}&deptId=${res.deptId}`,
143
+                });
144
+              } else {
145
+                uni.navigateTo({
146
+                  url: `../scanning_djEnd/scanning_djEnd?type=${
147
+                  this.tabType
148
+                }&type1=${res.type}&code=${this.code}&dept=${
149
+                  res.dept
150
+                }&ids=${encodeURIComponent(
151
+                  JSON.stringify(this.userId.ids)
152
+                )}&model=${encodeURIComponent(JSON.stringify(res))}&accountObj=${encodeURIComponent(JSON.stringify(accountObj))}&deptId=${res.deptId}`,
153
+                });
154
+              }
155
+            }
156
+          } else if (res.status == "0000") {
157
+            this.showSelectAccount();
158
+          } else {
159
+            this.flag = true;
160
+            uni.navigateTo({
161
+              url: `../scanning_djEnd/scanning_djEnd?type=${this.tabType}&type1=${
162
+              res.type
163
+            }&code=${this.code}&dept=${res.dept}&ids=${encodeURIComponent(
164
+              JSON.stringify(this.userId.ids)
165
+            )}&model=${encodeURIComponent(JSON.stringify(res))}&deptId=${res.deptId}`,
166
+            });
167
+          }
168
+        });
169
+      },
21 170
       // 底部扫描
22 171
       Scanning() {
23 172
         if (!this.SMFlag) {
@@ -99,11 +248,27 @@
99 248
                         // 扫描科室码
100 249
                         // code: data.code //二维码
101 250
                         let infoDATA = res.data;
102
-                        uni.navigateTo({
103
-                          url: `../scanning_all/scanning_all?infoDATA=${encodeURIComponent(
104
-                          JSON.stringify(infoDATA)
105
-                        )}&code=${data.code}`,
106
-                        });
251
+                        console.log(infoDATA)
252
+                        // 判断是否是标本配送,并且仅仅只有这一种业务类型,默认全选,并跳转到下一步;
253
+                        // 判断是否是标本轮巡 ,并且仅仅只有这一种业务类型,并且只有一个工单,默认选中,并跳转到下一步;
254
+                        if(Object.keys(infoDATA).length === 1 && (infoDATA.specimen || (infoDATA.specimenPlan && infoDATA.specimenPlan.length === 1))){
255
+                          this.infoDATA = infoDATA;
256
+                          this.workData = infoDATA.specimen || infoDATA.specimenPlan;
257
+                          this.tabType = infoDATA.specimen ? 'specimen' : 'specimenPlan';
258
+                          this.code = data.code;
259
+                          this.selectArr = [];
260
+                          for (var i = 0; i < this.workData.length; i++) {
261
+                            this.selectArr.push(this.workData[i].id);
262
+                          }
263
+                          this.userId.ids = this.selectArr;
264
+                          this.orderDeptHandler(true);
265
+                        }else{
266
+                          uni.navigateTo({
267
+                            url: `../scanning_all/scanning_all?infoDATA=${encodeURIComponent(
268
+                            JSON.stringify(infoDATA)
269
+                          )}&code=${data.code}`,
270
+                          });
271
+                        }
107 272
                       } else if (res.type == 'drugsBag') {
108 273
                         //扫药包码
109 274
                         uni.navigateTo({

+ 1 - 1
components/changeSpeNum/changeSpeNum.vue

@@ -57,7 +57,7 @@
57 57
       return {
58 58
         imageValue: [], //图片列表
59 59
         speNum: 0, //修改后的数量
60
-        reason: undefined, //修改原因
60
+        reason: '标本\n单子\n其他', //修改原因
61 61
         loading: false,
62 62
         userData: null,
63 63
         hosId: null,

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

+ 6 - 1
pages/checkAfterBigScreen/checkAfterBigScreen.vue

@@ -12,7 +12,7 @@
12 12
           <view class="text_big" @click="goToSpeDetail()"><text class="underline">{{info.total}}</text>只</view>
13 13
         </view>
14 14
         <view class="page_item_cont_title">
15
-          <view> 临床科室 </view>
15
+          <view class="text_title"> 临床科室 </view>
16 16
           <view class="text_big">{{info.LCDept}}</view>
17 17
         </view>
18 18
         <view class="page_item_cont_title2">
@@ -215,6 +215,11 @@
215 215
       padding: 0 20rpx;
216 216
       text-align: left;
217 217
       position: relative;
218
+      
219
+      .text_title{
220
+        flex-shrink: 0;
221
+        margin-right: 16rpx;
222
+      }
218 223
 
219 224
       .text_big {
220 225
         font-size: 32rpx;

+ 18 - 11
pages/checkAfterScanning/checkAfterScanning.vue

@@ -8,7 +8,7 @@
8 8
           <view class="text_big">{{info.gdCode}}</view>
9 9
         </view>
10 10
         <view class="page_item_cont_title">
11
-          <view> 科室名称 </view>
11
+          <view class="text_title"> 科室名称 </view>
12 12
           <view class="text_big">{{info.LCDept}}</view>
13 13
         </view>
14 14
         <view class="page_item_cont_title">
@@ -166,16 +166,18 @@
166 166
               content =
167 167
                 `您在<strong class="red">${ress.deptName}</strong>检验科扫描了<strong class="red">${ress.deptScanNum}</strong>个标本,还需扫描<strong class="red">${ress.deptNotScanNum}</strong>标本。`;
168 168
             }
169
-            this.models2 = {
170
-              disjunctor: true,
171
-              title: "提示",
172
-              content,
173
-              icon: "warn",
174
-              operate: {
175
-                ok: "确定",
176
-                cancel: "取消",
177
-              },
178
-            };
169
+            // 取消弹窗 2022年10月10日
170
+            this.ok2();
171
+            // this.models2 = {
172
+            //   disjunctor: true,
173
+            //   title: "提示",
174
+            //   content,
175
+            //   icon: "warn",
176
+            //   operate: {
177
+            //     ok: "确定",
178
+            //     cancel: "取消",
179
+            //   },
180
+            // };
179 181
           } else {
180 182
             uni.showToast({
181 183
               icon: "none",
@@ -309,6 +311,11 @@
309 311
       padding: 0 20rpx;
310 312
       text-align: left;
311 313
       position: relative;
314
+      
315
+      .text_title{
316
+        flex-shrink: 0;
317
+        margin-right: 16rpx;
318
+      }
312 319
 
313 320
       .text_big {
314 321
         font-size: 32rpx;

+ 6 - 3
pages/receiptpage/receiptpage.vue

@@ -81,6 +81,9 @@
81 81
                   {{ item.emergencyType.name }}
82 82
                 </view>
83 83
               </view>
84
+              <view class="page_item_conts" v-if="item.taskType.associationType.value == 'specimen'">
85
+                <view>扫描标本数量 : {{ item.actualReceiveNum || '无'}}</view>
86
+              </view>
84 87
               <view class="page_item_conts" v-if="item.taskType.associationType.value == 'inspect'">
85 88
                 <view>
86 89
                   预约时间 : {{ item.yyTime | yyTimeFilter
@@ -1158,7 +1161,7 @@
1158 1161
                 min-height: 80rpx;
1159 1162
                 max-height: 324rpx;
1160 1163
                 font-size: 28rpx;
1161
-                padding-top: 16rpx;
1164
+                margin-top: 16rpx;
1162 1165
 
1163 1166
                 .page_item_cont_title {
1164 1167
                   height: 100%;
@@ -1186,7 +1189,7 @@
1186 1189
 
1187 1190
               .page_item_conts {
1188 1191
                 color: rgb(102, 102, 102);
1189
-                padding-left: 18%;
1192
+                padding-left: 50rpx;
1190 1193
                 font-size: 28rpx;
1191 1194
 
1192 1195
                 view {
@@ -1203,7 +1206,7 @@
1203 1206
               }
1204 1207
 
1205 1208
               .page_item_cont_B {
1206
-                padding-top: 20rpx;
1209
+                // padding-top: 20rpx;
1207 1210
                 font-size: 28rpx;
1208 1211
                 overflow: hidden;
1209 1212
 

+ 64 - 2
pages/scanning/scanning.vue

@@ -6,7 +6,7 @@
6 6
       </view>
7 7
       <view class="Scanning_top_text">
8 8
         <view class="text1"> 扫描完成 </view>
9
-        <view class="text2" v-if="queryObj.content" v-html="queryObj.content"></view>
9
+        <view class="text2" v-if="queryObj.content && queryObj.type !== 'specimenPlan'" v-html="queryObj.content"></view>
10 10
         <view class="text2" v-if="!queryObj.content">
11 11
           您已在
12 12
           <text style="font-weight: 600; color: rgb(73, 184, 86)" v-if="
@@ -36,6 +36,23 @@
36 36
           <text>扫描<text style="color: #ff3b53">{{ speNum }}</text> 个标本,
37 37
             确认是否继续配送或是完成工单。</text>
38 38
         </view>
39
+        <template v-if="queryObj.type === 'specimenPlan'">
40
+          <table class="speTable">
41
+            <tr>
42
+              <td>科室名称</td>
43
+              <td>数量</td>
44
+              <td>状态</td>
45
+            </tr>
46
+            <tr v-for="spe in infoList" :key="spe[0]">
47
+              <td class="maxWidth">{{spe[1]}}</td>
48
+              <td>{{spe[2]}}</td>
49
+              <td>
50
+                <text v-if="spe[3] === 'ysd'" class="green">已到达</text>
51
+                <text v-if="spe[3] === 'wsd'" class="red">未到达</text>
52
+              </td>
53
+            </tr>
54
+          </table>
55
+        </template>
39 56
       </view>
40 57
     </view>
41 58
     <view class="foot_btn1 footerPadding">
@@ -75,6 +92,7 @@
75 92
   export default {
76 93
     data() {
77 94
       return {
95
+        infoList:[],
78 96
         // 弹窗model
79 97
         models: {
80 98
           disjunctor: false,
@@ -91,6 +109,29 @@
91 109
       };
92 110
     },
93 111
     methods: {
112
+      // 获取标本轮巡核对信息
113
+      getInfo() {
114
+        uni.showLoading({
115
+          title: "加载中",
116
+          mask: true,
117
+        });
118
+        let postData = {
119
+          startDept: this.queryObj.startDeptId,
120
+          targetDept: this.queryObj.targetDeptId,
121
+          uuid: this.dataId[0]
122
+        };
123
+        post(`/api/getDeptSpecimensNum`, postData).then((res) => {
124
+          uni.hideLoading();
125
+          if (res.status == 200) {
126
+            this.infoList = res.data;
127
+          } else {
128
+            uni.showToast({
129
+              icon: "none",
130
+              title: "请求失败!",
131
+            });
132
+          }
133
+        });
134
+      },
94 135
       // 继续配送
95 136
       Scanning_again(id) {
96 137
         uni.navigateTo({
@@ -217,6 +258,7 @@
217 258
       if (options.speNum) {
218 259
         this.speNum = options.speNum;
219 260
       }
261
+      this.getInfo();
220 262
       // #ifdef APP-PLUS
221 263
       webHandle("no", "app");
222 264
       // #endif
@@ -226,9 +268,29 @@
226 268
     },
227 269
   };
228 270
 </script>
229
-<style lang="less">
271
+<style lang="less" scoped>
230 272
   .Scanning {
231 273
     padding: 0 20rpx;
274
+    
275
+    // 标本轮巡核对 start
276
+    .speTable {
277
+      margin: 32rpx 0;
278
+      width: 100%;
279
+      border-collapse: collapse;
280
+      .green{
281
+        color: green;
282
+      }
283
+      .red{
284
+        color: red;
285
+      }
286
+      .maxWidth{
287
+        width: 60%;
288
+      }
289
+      td{
290
+        border: 2rpx solid #666;
291
+      }
292
+    }
293
+    // 标本轮巡核对 end
232 294
 
233 295
     .Scanning_top {
234 296
       height: 340rpx;

+ 12 - 10
pages/scanning_Result/scanning_Result.vue

@@ -581,16 +581,18 @@
581 581
               content =
582 582
                 `您在<strong class="red">${ress.deptName}</strong>检验科扫描了<strong class="red">${ress.deptScanNum}</strong>个标本,还需扫描<strong class="red">${ress.deptNotScanNum}</strong>标本。`;
583 583
             }
584
-            this.models2 = {
585
-              disjunctor: true,
586
-              title: "提示",
587
-              content,
588
-              icon: "warn",
589
-              operate: {
590
-                ok: "确定",
591
-                cancel: "取消",
592
-              },
593
-            };
584
+            // 取消弹窗 2022年10月10日
585
+            this.ok2();
586
+            // this.models2 = {
587
+            //   disjunctor: true,
588
+            //   title: "提示",
589
+            //   content,
590
+            //   icon: "warn",
591
+            //   operate: {
592
+            //     ok: "确定",
593
+            //     cancel: "取消",
594
+            //   },
595
+            // };
594 596
           } else {
595 597
             uni.showToast({
596 598
               icon: "none",

+ 112 - 136
pages/scanning_code/scanning_code.vue

@@ -463,78 +463,66 @@
463 463
             console.log(imageValue);
464 464
             if (!imageValue.length) {
465 465
               uni.hideLoading();
466
-              uni.showModal({
467
-                title: "提示",
468
-                content: "修改成功!",
469
-                showCancel: false,
470
-                success: (result) => {
471
-                  if (result.confirm) {
472
-                    console.log("用户点击确定");
473
-                    if (this.changeSpeObj.t == "big") {
474
-                      if (this.changeSpeObj.gdState == 4) {
475
-                        // 待到达
476
-                        uni.navigateTo({
477
-                          url: `../../pages/receiptpage/receiptpage`,
478
-                        });
479
-                      } else if (this.changeSpeObj.gdState == 5) {
480
-                        // 待送达
481
-                        if (res.type1 === "plan-spe-ddd-2") {} else {
482
-                          let content = `本工单已签到<strong class="red">${
483
-                          res.scanSet ? res.scanSet.join("、") : ""
484
-                        }</strong>,剩余需签到科室<strong class="red">${
485
-                          res.notScanSet ? res.notScanSet.join("、") : ""
486
-                        }</strong>,您确定完成工单吗?`;
487
-                          uni.navigateTo({
488
-                            url: `../scanning/scanning?type=${res.type}&type1=${
489
-                            res.type1
490
-                          }&id=${encodeURIComponent(
491
-                            JSON.stringify([res.gdid])
492
-                          )}&content=${content}`,
493
-                          });
494
-                        }
495
-                      }
496
-                    } else if (this.changeSpeObj.t == "small") {
497
-                      if (this.changeSpeObj.id == "undefined") {
498
-                        //快捷建单建单进入
499
-                        uni.navigateTo({
500
-                          url: `../../pages/receiptpage/receiptpage`,
501
-                        });
502
-                      } else {
503
-                        if (this.changeSpeObj.gdState == 4) {
504
-                          // 待到达
505
-                          uni.navigateTo({
506
-                            url: `../../pages/receiptpage/receiptpage`,
507
-                          });
508
-                        } else if (this.changeSpeObj.gdState == 5) {
509
-                          // 待送达
510
-                          if (res.type1 === "plan-spe-ddd-2") {} else {
511
-                            let content = `本工单已签到<strong class="red">${
512
-                            res.scanSet ? res.scanSet.join("、") : ""
513
-                          }</strong>,剩余需签到科室<strong class="red">${
514
-                            res.notScanSet ? res.notScanSet.join("、") : ""
515
-                          }</strong>,您确定完成工单吗?`;
516
-                            uni.navigateTo({
517
-                              url: `../scanning/scanning?type=${res.type}&type1=${
518
-                              res.type1
519
-                            }&id=${encodeURIComponent(
520
-                              JSON.stringify([res.gdid])
521
-                            )}&content=${content}`,
522
-                            });
523
-                          }
524
-                        }
525
-                      }
526
-                    } else {
466
+              if (this.changeSpeObj.t == "big") {
467
+                if (this.changeSpeObj.gdState == 4) {
468
+                  // 待到达
469
+                  uni.navigateTo({
470
+                    url: `../../pages/receiptpage/receiptpage`,
471
+                  });
472
+                } else if (this.changeSpeObj.gdState == 5) {
473
+                  // 待送达
474
+                  if (res.type1 === "plan-spe-ddd-2") {} else {
475
+                    let content = `本工单已签到<strong class="red">${
476
+                    res.scanSet ? res.scanSet.join("、") : ""
477
+                  }</strong>,剩余需签到科室<strong class="red">${
478
+                    res.notScanSet ? res.notScanSet.join("、") : ""
479
+                  }</strong>,您确定完成工单吗?`;
480
+                    uni.navigateTo({
481
+                      url: `../scanning/scanning?type=${res.type}&type1=${
482
+                      res.type1
483
+                    }&id=${encodeURIComponent(
484
+                      JSON.stringify([res.gdid])
485
+                    )}&content=${content}&startDeptId=${postData.transDeptId}&targetDeptId=${postData.checkDept}`,
486
+                    });
487
+                  }
488
+                }
489
+              } else if (this.changeSpeObj.t == "small") {
490
+                if (this.changeSpeObj.id == "undefined") {
491
+                  //快捷建单建单进入
492
+                  uni.navigateTo({
493
+                    url: `../../pages/receiptpage/receiptpage`,
494
+                  });
495
+                } else {
496
+                  if (this.changeSpeObj.gdState == 4) {
497
+                    // 待到达
498
+                    uni.navigateTo({
499
+                      url: `../../pages/receiptpage/receiptpage`,
500
+                    });
501
+                  } else if (this.changeSpeObj.gdState == 5) {
502
+                    // 待送达
503
+                    if (res.type1 === "plan-spe-ddd-2") {} else {
504
+                      let content = `本工单已签到<strong class="red">${
505
+                      res.scanSet ? res.scanSet.join("、") : ""
506
+                    }</strong>,剩余需签到科室<strong class="red">${
507
+                      res.notScanSet ? res.notScanSet.join("、") : ""
508
+                    }</strong>,您确定完成工单吗?`;
527 509
                       uni.navigateTo({
528
-                        url: `../../pages/specimenChecking/specimenChecking?infoDATA=${encodeURIComponent(
529
-                        JSON.stringify(this.changeSpeObj.infoDATA)
530
-                      )}`,
510
+                        url: `../scanning/scanning?type=${res.type}&type1=${
511
+                        res.type1
512
+                      }&id=${encodeURIComponent(
513
+                        JSON.stringify([res.gdid])
514
+                      )}&content=${content}&startDeptId=${postData.transDeptId}&targetDeptId=${postData.checkDept}`,
531 515
                       });
532 516
                     }
533
-                  } else if (result.cancel) {
534
-                    console.log("用户点击取消");
535 517
                   }
536
-                },
537
-              });
518
+                }
519
+              } else {
520
+                uni.navigateTo({
521
+                  url: `../../pages/specimenChecking/specimenChecking?infoDATA=${encodeURIComponent(
522
+                  JSON.stringify(this.changeSpeObj.infoDATA)
523
+                )}`,
524
+                });
525
+              }
538 526
               return;
539 527
             }
540 528
             let n = 0;
@@ -569,78 +557,66 @@
569 557
                       console.log(uploadFileRes);
570 558
                       if (--n === 0) {
571 559
                         uni.hideLoading();
572
-                        uni.showModal({
573
-                          title: "提示",
574
-                          content: "修改成功!",
575
-                          showCancel: false,
576
-                          success: (result) => {
577
-                            if (result.confirm) {
578
-                              console.log("用户点击确定", this.changeSpeObj.t);
579
-                              if (this.changeSpeObj.t == "big") {
580
-                                if (this.changeSpeObj.gdState == 4) {
581
-                                  // 待到达
582
-                                  uni.navigateTo({
583
-                                    url: `../../pages/receiptpage/receiptpage`,
584
-                                  });
585
-                                } else if (this.changeSpeObj.gdState == 5) {
586
-                                  // 待送达
587
-                                  if (res.type1 === "plan-spe-ddd-2") {} else {
588
-                                    let content = `本工单已签到<strong class="red">${
589
-                                    res.scanSet ? res.scanSet.join("、") : ""
590
-                                  }</strong>,剩余需签到科室<strong class="red">${
591
-                                    res.notScanSet ? res.notScanSet.join("、") : ""
592
-                                  }</strong>,您确定完成工单吗?`;
593
-                                    uni.navigateTo({
594
-                                      url: `../scanning/scanning?type=${res.type}&type1=${
595
-                                      res.type1
596
-                                    }&id=${encodeURIComponent(
597
-                                      JSON.stringify([res.gdid])
598
-                                    )}&content=${content}`,
599
-                                    });
600
-                                  }
601
-                                }
602
-                              } else if (this.changeSpeObj.t == "small") {
603
-                                if (this.changeSpeObj.id == "undefined") {
604
-                                  //快捷建单建单进入
605
-                                  uni.navigateTo({
606
-                                    url: `../../pages/receiptpage/receiptpage`,
607
-                                  });
608
-                                } else {
609
-                                  if (this.changeSpeObj.gdState == 4) {
610
-                                    // 待到达
611
-                                    uni.navigateTo({
612
-                                      url: `../../pages/receiptpage/receiptpage`,
613
-                                    });
614
-                                  } else if (this.changeSpeObj.gdState == 5) {
615
-                                    // 待送达
616
-                                    if (res.type1 === "plan-spe-ddd-2") {} else {
617
-                                      let content = `本工单已签到<strong class="red">${
618
-                                      res.scanSet ? res.scanSet.join("、") : ""
619
-                                    }</strong>,剩余需签到科室<strong class="red">${
620
-                                      res.notScanSet ? res.notScanSet.join("、") : ""
621
-                                    }</strong>,您确定完成工单吗?`;
622
-                                      uni.navigateTo({
623
-                                        url: `../scanning/scanning?type=${res.type}&type1=${
624
-                                        res.type1
625
-                                      }&id=${encodeURIComponent(
626
-                                        JSON.stringify([res.gdid])
627
-                                      )}&content=${content}`,
628
-                                      });
629
-                                    }
630
-                                  }
631
-                                }
632
-                              } else {
560
+                        if (this.changeSpeObj.t == "big") {
561
+                          if (this.changeSpeObj.gdState == 4) {
562
+                            // 待到达
563
+                            uni.navigateTo({
564
+                              url: `../../pages/receiptpage/receiptpage`,
565
+                            });
566
+                          } else if (this.changeSpeObj.gdState == 5) {
567
+                            // 待送达
568
+                            if (res.type1 === "plan-spe-ddd-2") {} else {
569
+                              let content = `本工单已签到<strong class="red">${
570
+                              res.scanSet ? res.scanSet.join("、") : ""
571
+                            }</strong>,剩余需签到科室<strong class="red">${
572
+                              res.notScanSet ? res.notScanSet.join("、") : ""
573
+                            }</strong>,您确定完成工单吗?`;
574
+                              uni.navigateTo({
575
+                                url: `../scanning/scanning?type=${res.type}&type1=${
576
+                                res.type1
577
+                              }&id=${encodeURIComponent(
578
+                                JSON.stringify([res.gdid])
579
+                              )}&content=${content}&startDeptId=${postData.transDeptId}&targetDeptId=${postData.checkDept}`,
580
+                              });
581
+                            }
582
+                          }
583
+                        } else if (this.changeSpeObj.t == "small") {
584
+                          if (this.changeSpeObj.id == "undefined") {
585
+                            //快捷建单建单进入
586
+                            uni.navigateTo({
587
+                              url: `../../pages/receiptpage/receiptpage`,
588
+                            });
589
+                          } else {
590
+                            if (this.changeSpeObj.gdState == 4) {
591
+                              // 待到达
592
+                              uni.navigateTo({
593
+                                url: `../../pages/receiptpage/receiptpage`,
594
+                              });
595
+                            } else if (this.changeSpeObj.gdState == 5) {
596
+                              // 待送达
597
+                              if (res.type1 === "plan-spe-ddd-2") {} else {
598
+                                let content = `本工单已签到<strong class="red">${
599
+                                res.scanSet ? res.scanSet.join("、") : ""
600
+                              }</strong>,剩余需签到科室<strong class="red">${
601
+                                res.notScanSet ? res.notScanSet.join("、") : ""
602
+                              }</strong>,您确定完成工单吗?`;
633 603
                                 uni.navigateTo({
634
-                                  url: `../../pages/specimenChecking/specimenChecking?infoDATA=${encodeURIComponent(
635
-                                  JSON.stringify(this.changeSpeObj.infoDATA)
636
-                                )}`,
604
+                                  url: `../scanning/scanning?type=${res.type}&type1=${
605
+                                  res.type1
606
+                                }&id=${encodeURIComponent(
607
+                                  JSON.stringify([res.gdid])
608
+                                )}&content=${content}&startDeptId=${postData.transDeptId}&targetDeptId=${postData.checkDept}`,
637 609
                                 });
638 610
                               }
639
-                            } else if (result.cancel) {
640
-                              console.log("用户点击取消");
641 611
                             }
642
-                          },
643
-                        });
612
+                          }
613
+                        } else {
614
+                          uni.navigateTo({
615
+                            url: `../../pages/specimenChecking/specimenChecking?infoDATA=${encodeURIComponent(
616
+                            JSON.stringify(this.changeSpeObj.infoDATA)
617
+                          )}`,
618
+                          });
619
+                        }
644 620
                       }
645 621
                     },
646 622
                     fail: (err) => {

+ 71 - 81
pages/scanning_djEnd/scanning_djEnd.vue

@@ -287,7 +287,7 @@
287 287
           title: "加载中",
288 288
         });
289 289
         let postData = {
290
-          checkDept: this.changeSpeObj.endDepts, //终点科室
290
+          checkDept: this.queryObj.endDepts, //终点科室
291 291
           transDeptId: this.changeSpeObj.infoDATA.startDept,
292 292
           gdId: this.changeSpeObj.infoDATA.uuid,
293 293
           deptId: this.changeSpeObj.id == "undefined" ?
@@ -300,78 +300,66 @@
300 300
             console.log(imageValue);
301 301
             if (!imageValue.length) {
302 302
               uni.hideLoading();
303
-              uni.showModal({
304
-                title: "提示",
305
-                content: "修改成功!",
306
-                showCancel: false,
307
-                success: (result) => {
308
-                  if (result.confirm) {
309
-                    console.log("用户点击确定");
310
-                    if (this.changeSpeObj.t == "big") {
311
-                      if (this.changeSpeObj.gdState == 4) {
312
-                        // 待到达
313
-                        uni.navigateTo({
314
-                          url: `../../pages/receiptpage/receiptpage`,
315
-                        });
316
-                      } else if (this.changeSpeObj.gdState == 5) {
317
-                        // 待送达
318
-                        if (res.type1 === "plan-spe-ddd-2") {} else {
319
-                          let content = `本工单已签到<strong class="red">${
320
-                          res.scanSet ? res.scanSet.join("、") : ""
321
-                        }</strong>,剩余需签到科室<strong class="red">${
322
-                          res.notScanSet ? res.notScanSet.join("、") : ""
323
-                        }</strong>,您确定完成工单吗?`;
324
-                          uni.navigateTo({
325
-                            url: `../scanning/scanning?type=${res.type}&type1=${
326
-                            res.type1
327
-                          }&id=${encodeURIComponent(
328
-                            JSON.stringify([res.gdid])
329
-                          )}&content=${content}`,
330
-                          });
331
-                        }
332
-                      }
333
-                    } else if (this.changeSpeObj.t == "small") {
334
-                      if (this.changeSpeObj.id == "undefined") {
335
-                        //快捷建单建单进入
336
-                        uni.navigateTo({
337
-                          url: `../../pages/receiptpage/receiptpage`,
338
-                        });
339
-                      } else {
340
-                        if (this.changeSpeObj.gdState == 4) {
341
-                          // 待到达
342
-                          uni.navigateTo({
343
-                            url: `../../pages/receiptpage/receiptpage`,
344
-                          });
345
-                        } else if (this.changeSpeObj.gdState == 5) {
346
-                          // 待送达
347
-                          if (res.type1 === "plan-spe-ddd-2") {} else {
348
-                            let content = `本工单已签到<strong class="red">${
349
-                            res.scanSet ? res.scanSet.join("、") : ""
350
-                          }</strong>,剩余需签到科室<strong class="red">${
351
-                            res.notScanSet ? res.notScanSet.join("、") : ""
352
-                          }</strong>,您确定完成工单吗?`;
353
-                            uni.navigateTo({
354
-                              url: `../scanning/scanning?type=${res.type}&type1=${
355
-                              res.type1
356
-                            }&id=${encodeURIComponent(
357
-                              JSON.stringify([res.gdid])
358
-                            )}&content=${content}`,
359
-                            });
360
-                          }
361
-                        }
362
-                      }
363
-                    } else {
303
+              if (this.changeSpeObj.t == "big") {
304
+                if (this.changeSpeObj.gdState == 4) {
305
+                  // 待到达
306
+                  uni.navigateTo({
307
+                    url: `../../pages/receiptpage/receiptpage`,
308
+                  });
309
+                } else if (this.changeSpeObj.gdState == 5) {
310
+                  // 待送达
311
+                  if (res.type1 === "plan-spe-ddd-2") {} else {
312
+                    let content = `本工单已签到<strong class="red">${
313
+                    res.scanSet ? res.scanSet.join("、") : ""
314
+                  }</strong>,剩余需签到科室<strong class="red">${
315
+                    res.notScanSet ? res.notScanSet.join("、") : ""
316
+                  }</strong>,您确定完成工单吗?`;
317
+                    uni.navigateTo({
318
+                      url: `../scanning/scanning?type=${res.type}&type1=${
319
+                      res.type1
320
+                    }&id=${encodeURIComponent(
321
+                      JSON.stringify([res.gdid])
322
+                    )}&content=${content}&startDeptId=${postData.transDeptId}&targetDeptId=${postData.checkDept}`,
323
+                    });
324
+                  }
325
+                }
326
+              } else if (this.changeSpeObj.t == "small") {
327
+                if (this.changeSpeObj.id == "undefined") {
328
+                  //快捷建单建单进入
329
+                  uni.navigateTo({
330
+                    url: `../../pages/receiptpage/receiptpage`,
331
+                  });
332
+                } else {
333
+                  if (this.changeSpeObj.gdState == 4) {
334
+                    // 待到达
335
+                    uni.navigateTo({
336
+                      url: `../../pages/receiptpage/receiptpage`,
337
+                    });
338
+                  } else if (this.changeSpeObj.gdState == 5) {
339
+                    // 待送达
340
+                    if (res.type1 === "plan-spe-ddd-2") {} else {
341
+                      let content = `本工单已签到<strong class="red">${
342
+                      res.scanSet ? res.scanSet.join("、") : ""
343
+                    }</strong>,剩余需签到科室<strong class="red">${
344
+                      res.notScanSet ? res.notScanSet.join("、") : ""
345
+                    }</strong>,您确定完成工单吗?`;
364 346
                       uni.navigateTo({
365
-                        url: `../../pages/specimenChecking/specimenChecking?infoDATA=${encodeURIComponent(
366
-                        JSON.stringify(this.changeSpeObj.infoDATA)
367
-                      )}`,
347
+                        url: `../scanning/scanning?type=${res.type}&type1=${
348
+                        res.type1
349
+                      }&id=${encodeURIComponent(
350
+                        JSON.stringify([res.gdid])
351
+                      )}&content=${content}&startDeptId=${postData.transDeptId}&targetDeptId=${postData.checkDept}`,
368 352
                       });
369 353
                     }
370
-                  } else if (result.cancel) {
371
-                    console.log("用户点击取消");
372 354
                   }
373
-                },
374
-              });
355
+                }
356
+              } else {
357
+                uni.navigateTo({
358
+                  url: `../../pages/specimenChecking/specimenChecking?infoDATA=${encodeURIComponent(
359
+                  JSON.stringify(this.changeSpeObj.infoDATA)
360
+                )}`,
361
+                });
362
+              }
375 363
               return;
376 364
             }
377 365
             let n = 0;
@@ -432,7 +420,7 @@
432 420
                                       res.type1
433 421
                                     }&id=${encodeURIComponent(
434 422
                                       JSON.stringify([res.gdid])
435
-                                    )}&content=${content}`,
423
+                                    )}&content=${content}&startDeptId=${postData.transDeptId}&targetDeptId=${postData.checkDept}`,
436 424
                                     });
437 425
                                   }
438 426
                                 }
@@ -461,7 +449,7 @@
461 449
                                         res.type1
462 450
                                       }&id=${encodeURIComponent(
463 451
                                         JSON.stringify([res.gdid])
464
-                                      )}&content=${content}`,
452
+                                      )}&content=${content}&startDeptId=${postData.transDeptId}&targetDeptId=${postData.checkDept}`,
465 453
                                       });
466 454
                                     }
467 455
                                   }
@@ -840,16 +828,18 @@
840 828
                 content =
841 829
                   `您在<strong class="red">${ress.deptName}</strong>检验科扫描了<strong class="red">${ress.deptScanNum}</strong>个标本,还需扫描<strong class="red">${ress.deptNotScanNum}</strong>标本。`;
842 830
               }
843
-              this.models2 = {
844
-                disjunctor: true,
845
-                title: "提示",
846
-                content,
847
-                icon: "warn",
848
-                operate: {
849
-                  ok: "确定",
850
-                  cancel: "取消",
851
-                },
852
-              };
831
+              // 取消弹窗 2022年10月10日
832
+              this.ok2();
833
+              // this.models2 = {
834
+              //   disjunctor: true,
835
+              //   title: "提示",
836
+              //   content,
837
+              //   icon: "warn",
838
+              //   operate: {
839
+              //     ok: "确定",
840
+              //     cancel: "取消",
841
+              //   },
842
+              // };
853 843
             } else {
854 844
               uni.showToast({
855 845
                 icon: "none",

+ 12 - 10
pages/scanning_djInfo/scanning_djInfo.vue

@@ -498,16 +498,18 @@
498 498
               content =
499 499
                 `您在<strong class="red">${ress.deptName}</strong>检验科扫描了<strong class="red">${ress.deptScanNum}</strong>个标本,还需扫描<strong class="red">${ress.deptNotScanNum}</strong>标本。`;
500 500
             }
501
-            this.models2 = {
502
-              disjunctor: true,
503
-              title: "提示",
504
-              content,
505
-              icon: "warn",
506
-              operate: {
507
-                ok: "确定",
508
-                cancel: "取消",
509
-              },
510
-            };
501
+            // 取消弹窗 2022年10月10日
502
+            this.ok2();
503
+            // this.models2 = {
504
+            //   disjunctor: true,
505
+            //   title: "提示",
506
+            //   content,
507
+            //   icon: "warn",
508
+            //   operate: {
509
+            //     ok: "确定",
510
+            //     cancel: "取消",
511
+            //   },
512
+            // };
511 513
           } else {
512 514
             uni.showToast({
513 515
               icon: "none",

+ 53 - 3
pages/scanning_drug/scanning_drug.vue

@@ -77,10 +77,13 @@
77 77
       <view class="L-l"></view>
78 78
       <view class="R-l"></view>
79 79
     </view>
80
-    <button class="cube-toolbar-item" v-show="isShowBtn" @click="buildOrderAndSign()">
80
+    <button class="cube-toolbar-item" v-show="isShowBtn" @click="receiveOrderAndSign()">
81 81
       接单并签到
82 82
     </button>
83
-    <button class="cube-toolbar-item" v-show="!isShowBtn" @click="goBack()">
83
+    <button class="cube-toolbar-item" v-show="!workOrder.id" @click="buildOrderAndSign()">
84
+      建单并签到
85
+    </button>
86
+    <button class="cube-toolbar-item" v-show="!isShowBtn && workOrder.id" @click="goBack()">
84 87
       知道了
85 88
     </button>
86 89
     <!-- 弹窗 -->
@@ -339,7 +342,7 @@
339 342
         this.gotoFlag = true;
340 343
       },
341 344
       // 接单并签到
342
-      buildOrderAndSign() {
345
+      receiveOrderAndSign() {
343 346
         if (!this.gotoFlag) {
344 347
           return;
345 348
         }
@@ -364,6 +367,52 @@
364 367
           }
365 368
         }
366 369
       },
370
+      // 建单并签到
371
+      buildOrderAndSign() {
372
+        if (!this.gotoFlag) {
373
+          return;
374
+        }
375
+        this.gotoFlag = false;
376
+        uni.showModal({
377
+          title: "提示",
378
+          content: "请确认是否建单并签到?",
379
+          success: (result) => {
380
+            if (result.confirm) {
381
+              console.log("用户点击确定");
382
+              let postData = {
383
+                packId: this.drugsBagDto.packid,
384
+              };
385
+              uni.showLoading({
386
+                title: "加载中",
387
+                mask: true,
388
+              });
389
+              post("/workerOrder/drugBagReceiving", postData).then((ress) => {
390
+                uni.hideLoading();
391
+                if (ress.status == 200) {
392
+                  let info = {
393
+                    targetDept: ress.data.target.dept, //所属科室
394
+                    packid: ress.data.packid, //药包编码
395
+                    status: ress.status,
396
+                    msg: ress.msg,
397
+                  };
398
+                  uni.navigateTo({
399
+                    url: `../scanning_result_seimin/scanning_result_seimin?info=${encodeURIComponent(
400
+                    JSON.stringify(info)
401
+                  )}`,
402
+                  });
403
+                } else {
404
+                  uni.showToast({
405
+                    icon: "none",
406
+                    title: "请求失败!",
407
+                  });
408
+                }
409
+              });
410
+            } else if (result.cancel) {
411
+              console.log("用户点击取消");
412
+            }
413
+          },
414
+        });
415
+      },
367 416
       //获取药包信息及其关联的工单信息
368 417
       queryDrugsBagForId(drugsBagId) {
369 418
         uni.showLoading({
@@ -377,6 +426,7 @@
377 426
           if (res.status == 200) {
378 427
             this.drugsBagDto = res.drugsBagDto || {};
379 428
             this.workOrder = res.workOrder || {};
429
+            console.log(this.workOrder)
380 430
           } else {
381 431
             uni.showToast({
382 432
               icon: "none",

+ 58 - 70
pages/specimenChecking/specimenChecking.vue

@@ -95,78 +95,66 @@
95 95
             console.log(imageValue);
96 96
             if (!imageValue.length) {
97 97
               uni.hideLoading();
98
-              uni.showModal({
99
-                title: "提示",
100
-                content: "修改成功!",
101
-                showCancel: false,
102
-                success: (result) => {
103
-                  if (result.confirm) {
104
-                    console.log("用户点击确定");
105
-                    if (this.changeSpeObj.t == "big") {
106
-                      if (this.changeSpeObj.gdState == 4) {
107
-                        // 待到达
108
-                        uni.navigateTo({
109
-                          url: `../../pages/receiptpage/receiptpage`,
110
-                        });
111
-                      } else if (this.changeSpeObj.gdState == 5) {
112
-                        // 待送达
113
-                        if (res.type1 === "plan-spe-ddd-2") {} else {
114
-                          let content = `本工单已签到<strong class="red">${
115
-                          res.scanSet ? res.scanSet.join("、") : ""
116
-                        }</strong>,剩余需签到科室<strong class="red">${
117
-                          res.notScanSet ? res.notScanSet.join("、") : ""
118
-                        }</strong>,您确定完成工单吗?`;
119
-                          uni.navigateTo({
120
-                            url: `../scanning/scanning?type=${res.type}&type1=${
121
-                            res.type1
122
-                          }&id=${encodeURIComponent(
123
-                            JSON.stringify([res.gdid])
124
-                          )}&content=${content}`,
125
-                          });
126
-                        }
127
-                      }
128
-                    } else if (this.changeSpeObj.t == "small") {
129
-                      if (this.changeSpeObj.id == "undefined") {
130
-                        //快捷建单建单进入
131
-                        uni.navigateTo({
132
-                          url: `../../pages/receiptpage/receiptpage`,
133
-                        });
134
-                      } else {
135
-                        if (this.changeSpeObj.gdState == 4) {
136
-                          // 待到达
137
-                          uni.navigateTo({
138
-                            url: `../../pages/receiptpage/receiptpage`,
139
-                          });
140
-                        } else if (this.changeSpeObj.gdState == 5) {
141
-                          // 待送达
142
-                          if (res.type1 === "plan-spe-ddd-2") {} else {
143
-                            let content = `本工单已签到<strong class="red">${
144
-                            res.scanSet ? res.scanSet.join("、") : ""
145
-                          }</strong>,剩余需签到科室<strong class="red">${
146
-                            res.notScanSet ? res.notScanSet.join("、") : ""
147
-                          }</strong>,您确定完成工单吗?`;
148
-                            uni.navigateTo({
149
-                              url: `../scanning/scanning?type=${res.type}&type1=${
150
-                              res.type1
151
-                            }&id=${encodeURIComponent(
152
-                              JSON.stringify([res.gdid])
153
-                            )}&content=${content}`,
154
-                            });
155
-                          }
156
-                        }
157
-                      }
158
-                    } else {
98
+              if (this.changeSpeObj.t == "big") {
99
+                if (this.changeSpeObj.gdState == 4) {
100
+                  // 待到达
101
+                  uni.navigateTo({
102
+                    url: `../../pages/receiptpage/receiptpage`,
103
+                  });
104
+                } else if (this.changeSpeObj.gdState == 5) {
105
+                  // 待送达
106
+                  if (res.type1 === "plan-spe-ddd-2") {} else {
107
+                    let content = `本工单已签到<strong class="red">${
108
+                    res.scanSet ? res.scanSet.join("、") : ""
109
+                  }</strong>,剩余需签到科室<strong class="red">${
110
+                    res.notScanSet ? res.notScanSet.join("、") : ""
111
+                  }</strong>,您确定完成工单吗?`;
112
+                    uni.navigateTo({
113
+                      url: `../scanning/scanning?type=${res.type}&type1=${
114
+                      res.type1
115
+                    }&id=${encodeURIComponent(
116
+                      JSON.stringify([res.gdid])
117
+                    )}&content=${content}&startDeptId=${postData.transDeptId}&targetDeptId=${postData.checkDept}`,
118
+                    });
119
+                  }
120
+                }
121
+              } else if (this.changeSpeObj.t == "small") {
122
+                if (this.changeSpeObj.id == "undefined") {
123
+                  //快捷建单建单进入
124
+                  uni.navigateTo({
125
+                    url: `../../pages/receiptpage/receiptpage`,
126
+                  });
127
+                } else {
128
+                  if (this.changeSpeObj.gdState == 4) {
129
+                    // 待到达
130
+                    uni.navigateTo({
131
+                      url: `../../pages/receiptpage/receiptpage`,
132
+                    });
133
+                  } else if (this.changeSpeObj.gdState == 5) {
134
+                    // 待送达
135
+                    if (res.type1 === "plan-spe-ddd-2") {} else {
136
+                      let content = `本工单已签到<strong class="red">${
137
+                      res.scanSet ? res.scanSet.join("、") : ""
138
+                    }</strong>,剩余需签到科室<strong class="red">${
139
+                      res.notScanSet ? res.notScanSet.join("、") : ""
140
+                    }</strong>,您确定完成工单吗?`;
159 141
                       uni.navigateTo({
160
-                        url: `../../pages/specimenChecking/specimenChecking?infoDATA=${encodeURIComponent(
161
-                        JSON.stringify(this.changeSpeObj.infoDATA)
162
-                      )}`,
142
+                        url: `../scanning/scanning?type=${res.type}&type1=${
143
+                        res.type1
144
+                      }&id=${encodeURIComponent(
145
+                        JSON.stringify([res.gdid])
146
+                      )}&content=${content}&startDeptId=${postData.transDeptId}&targetDeptId=${postData.checkDept}`,
163 147
                       });
164 148
                     }
165
-                  } else if (result.cancel) {
166
-                    console.log("用户点击取消");
167 149
                   }
168
-                },
169
-              });
150
+                }
151
+              } else {
152
+                uni.navigateTo({
153
+                  url: `../../pages/specimenChecking/specimenChecking?infoDATA=${encodeURIComponent(
154
+                  JSON.stringify(this.changeSpeObj.infoDATA)
155
+                )}`,
156
+                });
157
+              }
170 158
               return;
171 159
             }
172 160
             let n = 0;
@@ -227,7 +215,7 @@
227 215
                                       res.type1
228 216
                                     }&id=${encodeURIComponent(
229 217
                                       JSON.stringify([res.gdid])
230
-                                    )}&content=${content}`,
218
+                                    )}&content=${content}&startDeptId=${postData.transDeptId}&targetDeptId=${postData.checkDept}`,
231 219
                                     });
232 220
                                   }
233 221
                                 }
@@ -256,7 +244,7 @@
256 244
                                         res.type1
257 245
                                       }&id=${encodeURIComponent(
258 246
                                         JSON.stringify([res.gdid])
259
-                                      )}&content=${content}`,
247
+                                      )}&content=${content}&startDeptId=${postData.transDeptId}&targetDeptId=${postData.checkDept}`,
260 248
                                       });
261 249
                                     }
262 250
                                   }

+ 58 - 70
pages/specimenCheckingDetail/specimenCheckingDetail.vue

@@ -404,78 +404,66 @@
404 404
             console.log(imageValue);
405 405
             if (!imageValue.length) {
406 406
               uni.hideLoading();
407
-              uni.showModal({
408
-                title: "提示",
409
-                content: "修改成功!",
410
-                showCancel: false,
411
-                success: (result) => {
412
-                  if (result.confirm) {
413
-                    console.log("用户点击确定");
414
-                    if (this.options.t == "big") {
415
-                      if (this.options.gdState == 4) {
416
-                        // 待到达
417
-                        uni.navigateTo({
418
-                          url: `../../pages/receiptpage/receiptpage`,
419
-                        });
420
-                      } else if (this.options.gdState == 5) {
421
-                        // 待送达
422
-                        if (res.type1 === "plan-spe-ddd-2") {} else {
423
-                          let content = `本工单已签到<strong class="red">${
424
-                          res.scanSet ? res.scanSet.join("、") : ""
425
-                        }</strong>,剩余需签到科室<strong class="red">${
426
-                          res.notScanSet ? res.notScanSet.join("、") : ""
427
-                        }</strong>,您确定完成工单吗?`;
428
-                          uni.navigateTo({
429
-                            url: `../scanning/scanning?type=${res.type}&type1=${
430
-                            res.type1
431
-                          }&id=${encodeURIComponent(
432
-                            JSON.stringify([res.gdid])
433
-                          )}&content=${content}`,
434
-                          });
435
-                        }
436
-                      }
437
-                    } else if (this.options.t == "small") {
438
-                      if (this.selectDeptId == "undefined") {
439
-                        //快捷建单建单进入
440
-                        uni.navigateTo({
441
-                          url: `../../pages/receiptpage/receiptpage`,
442
-                        });
443
-                      } else {
444
-                        if (this.options.gdState == 4) {
445
-                          // 待到达
446
-                          uni.navigateTo({
447
-                            url: `../../pages/receiptpage/receiptpage`,
448
-                          });
449
-                        } else if (this.options.gdState == 5) {
450
-                          // 待送达
451
-                          if (res.type1 === "plan-spe-ddd-2") {} else {
452
-                            let content = `本工单已签到<strong class="red">${
453
-                            res.scanSet ? res.scanSet.join("、") : ""
454
-                          }</strong>,剩余需签到科室<strong class="red">${
455
-                            res.notScanSet ? res.notScanSet.join("、") : ""
456
-                          }</strong>,您确定完成工单吗?`;
457
-                            uni.navigateTo({
458
-                              url: `../scanning/scanning?type=${res.type}&type1=${
459
-                              res.type1
460
-                            }&id=${encodeURIComponent(
461
-                              JSON.stringify([res.gdid])
462
-                            )}&content=${content}`,
463
-                            });
464
-                          }
465
-                        }
466
-                      }
467
-                    } else {
407
+              if (this.options.t == "big") {
408
+                if (this.options.gdState == 4) {
409
+                  // 待到达
410
+                  uni.navigateTo({
411
+                    url: `../../pages/receiptpage/receiptpage`,
412
+                  });
413
+                } else if (this.options.gdState == 5) {
414
+                  // 待送达
415
+                  if (res.type1 === "plan-spe-ddd-2") {} else {
416
+                    let content = `本工单已签到<strong class="red">${
417
+                    res.scanSet ? res.scanSet.join("、") : ""
418
+                  }</strong>,剩余需签到科室<strong class="red">${
419
+                    res.notScanSet ? res.notScanSet.join("、") : ""
420
+                  }</strong>,您确定完成工单吗?`;
421
+                    uni.navigateTo({
422
+                      url: `../scanning/scanning?type=${res.type}&type1=${
423
+                      res.type1
424
+                    }&id=${encodeURIComponent(
425
+                      JSON.stringify([res.gdid])
426
+                    )}&content=${content}&startDeptId=${postData.transDeptId}&targetDeptId=${postData.checkDept}`,
427
+                    });
428
+                  }
429
+                }
430
+              } else if (this.options.t == "small") {
431
+                if (this.selectDeptId == "undefined") {
432
+                  //快捷建单建单进入
433
+                  uni.navigateTo({
434
+                    url: `../../pages/receiptpage/receiptpage`,
435
+                  });
436
+                } else {
437
+                  if (this.options.gdState == 4) {
438
+                    // 待到达
439
+                    uni.navigateTo({
440
+                      url: `../../pages/receiptpage/receiptpage`,
441
+                    });
442
+                  } else if (this.options.gdState == 5) {
443
+                    // 待送达
444
+                    if (res.type1 === "plan-spe-ddd-2") {} else {
445
+                      let content = `本工单已签到<strong class="red">${
446
+                      res.scanSet ? res.scanSet.join("、") : ""
447
+                    }</strong>,剩余需签到科室<strong class="red">${
448
+                      res.notScanSet ? res.notScanSet.join("、") : ""
449
+                    }</strong>,您确定完成工单吗?`;
468 450
                       uni.navigateTo({
469
-                        url: `../../pages/specimenChecking/specimenChecking?infoDATA=${encodeURIComponent(
470
-                        JSON.stringify(this.msg)
471
-                      )}`,
451
+                        url: `../scanning/scanning?type=${res.type}&type1=${
452
+                        res.type1
453
+                      }&id=${encodeURIComponent(
454
+                        JSON.stringify([res.gdid])
455
+                      )}&content=${content}&startDeptId=${postData.transDeptId}&targetDeptId=${postData.checkDept}`,
472 456
                       });
473 457
                     }
474
-                  } else if (result.cancel) {
475
-                    console.log("用户点击取消");
476 458
                   }
477
-                },
478
-              });
459
+                }
460
+              } else {
461
+                uni.navigateTo({
462
+                  url: `../../pages/specimenChecking/specimenChecking?infoDATA=${encodeURIComponent(
463
+                  JSON.stringify(this.msg)
464
+                )}`,
465
+                });
466
+              }
479 467
               return;
480 468
             }
481 469
             let n = 0;
@@ -536,7 +524,7 @@
536 524
                                       res.type1
537 525
                                     }&id=${encodeURIComponent(
538 526
                                       JSON.stringify([res.gdid])
539
-                                    )}&content=${content}`,
527
+                                    )}&content=${content}&startDeptId=${postData.transDeptId}&targetDeptId=${postData.checkDept}`,
540 528
                                     });
541 529
                                   }
542 530
                                 }
@@ -565,7 +553,7 @@
565 553
                                         res.type1
566 554
                                       }&id=${encodeURIComponent(
567 555
                                         JSON.stringify([res.gdid])
568
-                                      )}&content=${content}`,
556
+                                      )}&content=${content}&startDeptId=${postData.transDeptId}&targetDeptId=${postData.checkDept}`,
569 557
                                       });
570 558
                                     }
571 559
                                   }