Bläddra i källkod

血制品功能修改

seimin 2 år sedan
förälder
incheckning
4bf923197a

+ 4 - 0
App.vue

@@ -141,4 +141,8 @@
141 141
   .f30 {
142 142
     font-size: 30rpx !important;
143 143
   }
144
+  
145
+  .mt8{
146
+    margin-top: 16rpx !important;
147
+  }
144 148
 </style>

+ 30 - 7
pages/bloodSelect/bloodSelect.vue

@@ -81,17 +81,40 @@
81 81
             title: "加载中",
82 82
             mask: true,
83 83
           });
84
-          post("/transflow/scanBind", {type: 'blood',orderId: this.options.orderId, id: this.currentItem.id}).then((ress) => {
84
+          post("/transflow/scanBind", {type: 'blood',orderId: this.options.orderId, id: this.currentItem.id, forceDept: this.options.isInput == 1 ? true : undefined}).then((ress) => {
85 85
             uni.hideLoading();
86 86
             if (ress.state == 200 && ress.data.state != 400) {
87 87
               //todo
88
-              uni.redirectTo({
89
-                url: `../scanning_blood_process/scanning_blood_process?orderId=${this.options.orderId}&bloodDTO=${encodeURIComponent(JSON.stringify(ress.data.dto))}&scanCount=${ress.data.scanCount}&status=200&scanOrHand=${this.options.scanOrHand}&isSelect=1`,
90
-              });
88
+              if(this.options.isInput == 1){
89
+                uni.redirectTo({
90
+                  url: `../scanning_blood_process/scanning_blood_process?orderId=${this.options.orderId}&bloodDTO=${encodeURIComponent(JSON.stringify(ress.data.dto))}&scanCount=${ress.data.scanCount}&status=200&scanOrHand=${this.options.scanOrHand}&isSelect=1&isInput=1`,
91
+                });
92
+              }else{
93
+                uni.redirectTo({
94
+                  url: `../scanning_blood_process/scanning_blood_process?orderId=${this.options.orderId}&bloodDTO=${encodeURIComponent(JSON.stringify(ress.data.dto))}&scanCount=${ress.data.scanCount}&status=200&scanOrHand=${this.options.scanOrHand}&isSelect=1`,
95
+                });
96
+              }
97
+            } else if (ress.state == 200 && ress.data.state == 400 && ress.data.orderState != 5) {
98
+              
99
+              if(this.options.isInput == 1){
100
+                uni.redirectTo({
101
+                  url: `../scanning_blood_process/scanning_blood_process?orderId=${this.options.orderId}&bloodDTO=${encodeURIComponent(JSON.stringify(ress.data.data))}&status=400&scanOrHand=${this.options.scanOrHand}&qrcode=${this.options.qrcode}&isInput=1`,
102
+                });
103
+              }else{
104
+                uni.redirectTo({
105
+                  url: `../scanning_blood_process/scanning_blood_process?orderId=${this.options.orderId}&bloodDTO=${encodeURIComponent(JSON.stringify(ress.data.data))}&status=400&scanOrHand=${this.options.scanOrHand}&qrcode=${this.options.qrcode}`,
106
+                });
107
+              }
91 108
             } else {
92
-              uni.redirectTo({
93
-                url: `../scanning_blood_process/scanning_blood_process?orderId=${this.options.orderId}&status=500&scanOrHand=${this.options.scanOrHand}&qrcode=${this.options.qrcode}`,
94
-              });
109
+              if(this.options.isInput == 1){
110
+                uni.redirectTo({
111
+                  url: `../scanning_blood_process/scanning_blood_process?orderId=${this.options.orderId}&status=500&scanOrHand=${this.options.scanOrHand}&qrcode=${this.options.qrcode}&isInput=1`,
112
+                });
113
+              }else{
114
+                uni.redirectTo({
115
+                  url: `../scanning_blood_process/scanning_blood_process?orderId=${this.options.orderId}&status=500&scanOrHand=${this.options.scanOrHand}&qrcode=${this.options.qrcode}`,
116
+                });
117
+              }
95 118
             }
96 119
           });
97 120
         }else{

+ 35 - 13
pages/check_blood/check_blood.vue

@@ -36,7 +36,7 @@
36 36
       </view>
37 37
     </block>
38 38
     <view class="foot_btn_spe">
39
-      <view class="btn1" @click="Scanning_again()" v-if="configs.checkType.value == 1"> 继续扫描 </view>
39
+      <view class="btn1" @click="Scanning_again()" v-if="configs.checkType && (configs.checkType.value == 1 || (configs.checkType.value == 2 && order.gdState && order.gdState.value != 5))"> 继续扫描 </view>
40 40
       <view class="btn3" @click="checkComplete()">核对完成</view>
41 41
     </view>
42 42
   </view>
@@ -190,23 +190,45 @@
190 190
           if (result.state == 200 || result.state == 201) {
191 191
             let codes = result.code;
192 192
             if (codes) {
193
-              post("/transflow/scanBind", {type: 'blood',orderId: this.queryObj.orderId, code: ress1}).then((ress) => {
193
+              post("/transflow/scanBind", {type: 'blood',orderId: this.queryObj.orderId, code: ress1, forceDept: this.queryObj.isInput == 1 ? true : undefined}).then((ress) => {
194 194
                 uni.hideLoading();
195 195
                 if (ress.state == 200 && ress.data.state != 400) {
196 196
                   //扫描标本后会自动调用摄像头,继续扫描,直到status不是200
197
-                  setTimeout(()=>{
198
-                    if (type === 'scan') {
199
-                      this.Scanning_again();
200
-                    }
201
-                  },500)
197
+                  // setTimeout(()=>{
198
+                  //   if (type === 'scan') {
199
+                  //     this.Scanning_again();
200
+                  //   }
201
+                  // },500)
202 202
                   //todo
203
-                  uni.redirectTo({
204
-                    url: `../scanning_blood_process/scanning_blood_process?orderId=${this.queryObj.orderId}&bloodDTO=${encodeURIComponent(JSON.stringify(ress.data.dto))}&scanCount=${ress.data.scanCount}&status=200&scanOrHand=${type}`,
205
-                  });
203
+                  if(this.queryObj.isInput == 1){
204
+                    uni.redirectTo({
205
+                      url: `../scanning_blood_process/scanning_blood_process?orderId=${this.queryObj.orderId}&bloodDTO=${encodeURIComponent(JSON.stringify(ress.data.dto))}&scanCount=${ress.data.scanCount}&status=200&scanOrHand=${type}&isInput=1`,
206
+                    });
207
+                  }else{
208
+                    uni.redirectTo({
209
+                      url: `../scanning_blood_process/scanning_blood_process?orderId=${this.queryObj.orderId}&bloodDTO=${encodeURIComponent(JSON.stringify(ress.data.dto))}&scanCount=${ress.data.scanCount}&status=200&scanOrHand=${type}`,
210
+                    });
211
+                  }
212
+                }else if(ress.state == 200 && ress.data.state == 400 && ress.data.orderState != 5) {
213
+                  if(this.queryObj.isInput == 1){
214
+                    uni.redirectTo({
215
+                      url: `../scanning_blood_process/scanning_blood_process?orderId=${this.queryObj.orderId}&bloodDTO=${encodeURIComponent(JSON.stringify(ress.data.data))}&status=400&scanOrHand=${type}&qrcode=${ress1}&isInput=1`,
216
+                    });
217
+                  }else{
218
+                    uni.redirectTo({
219
+                      url: `../scanning_blood_process/scanning_blood_process?orderId=${this.queryObj.orderId}&bloodDTO=${encodeURIComponent(JSON.stringify(ress.data.data))}&status=400&scanOrHand=${type}&qrcode=${ress1}`,
220
+                    });
221
+                  }
206 222
                 } else {
207
-                  uni.redirectTo({
208
-                    url: `../scanning_blood_process/scanning_blood_process?orderId=${this.queryObj.orderId}&status=500&scanOrHand=${type}&qrcode=${ress1}`,
209
-                  });
223
+                  if(this.queryObj.isInput == 1){
224
+                    uni.redirectTo({
225
+                      url: `../scanning_blood_process/scanning_blood_process?orderId=${this.queryObj.orderId}&status=500&scanOrHand=${type}&qrcode=${ress1}&isInput=1`,
226
+                    });
227
+                  }else{
228
+                    uni.redirectTo({
229
+                      url: `../scanning_blood_process/scanning_blood_process?orderId=${this.queryObj.orderId}&status=500&scanOrHand=${type}&qrcode=${ress1}`,
230
+                    });
231
+                  }
210 232
                 }
211 233
               });
212 234
             } else {

+ 36 - 10
pages/scanning_blood/scanning_blood.vue

@@ -101,6 +101,9 @@
101 101
       <button class="cube-toolbar-item" v-show="!orderId && buildOrder" @click="buildOrderAndSign()">
102 102
         建单并签到
103 103
       </button>
104
+      <button class="cube-toolbar-item" v-show="signDeptOrder" @click="signDeptOrderAndSign()">
105
+        指定科室建单
106
+      </button>
104 107
       <button class="cube-toolbar-item" @click="goBack()">
105 108
         知道了
106 109
       </button>
@@ -115,8 +118,10 @@
115 118
   export default {
116 119
     data() {
117 120
       return {
121
+        options: {},
118 122
         receiveOrder: false,
119 123
         buildOrder: false,
124
+        signDeptOrder: false,
120 125
         bloodDTO: {}, //血制品信息
121 126
         taskTypeConfig: {}, //血制品配置信息
122 127
         orderId:'',//工单id
@@ -208,6 +213,23 @@
208 213
           },
209 214
         });
210 215
       },
216
+      // 指定科室建单
217
+      signDeptOrderAndSign(){
218
+        uni.showModal({
219
+          title: "提示",
220
+          content: "请选择血制品要送达的科室!",
221
+          success: (result) => {
222
+            if (result.confirm) {
223
+              console.log("用户点击确定");
224
+              uni.navigateTo({
225
+                url: `../search/search?type=bloodSelect&bloodDTO=${encodeURIComponent(JSON.stringify(this.bloodDTO))}`,
226
+              });
227
+            } else if (result.cancel) {
228
+              console.log("用户点击取消");
229
+            }
230
+          },
231
+        });
232
+      },
211 233
       //获取血制品信息及其关联的工单信息
212 234
       scanInfo(value, type) {
213 235
         uni.showLoading({
@@ -229,15 +251,22 @@
229 251
               console.log(sign_ids);
230 252
               this.receiveOrder = false;
231 253
               this.buildOrder = false;
254
+              this.signDeptOrder = false;
232 255
               sign_ids.forEach(v => {
233 256
                 let obj = res1.find(vv => vv.id == v);
234 257
                 console.log(obj);
258
+                // 接单
235 259
                 if(obj && obj.value == 1){
236 260
                   this.receiveOrder = true;
237 261
                 }
262
+                // 建单
238 263
                 if(obj && obj.value == 2){
239 264
                   this.buildOrder = true;
240 265
                 }
266
+                // 指定科室建单
267
+                if(obj && obj.value == 3){
268
+                  this.signDeptOrder = true;
269
+                }
241 270
               })
242 271
             } else {
243 272
               uni.showToast({
@@ -254,14 +283,11 @@
254 283
     },
255 284
     onLoad(options) {
256 285
       console.log(options);
257
-      let {
258
-        qrcode,
259
-        id
260
-      } = options;
261
-      if (qrcode) {
262
-        this.scanInfo(qrcode, 'code');
263
-      }else if (id) {
264
-        this.scanInfo(id, 'id');
286
+      this.options = options;
287
+      if (this.options.qrcode) {
288
+        this.scanInfo(this.options.qrcode, 'code');
289
+      }else if (this.options.id) {
290
+        this.scanInfo(this.options.id, 'id');
265 291
       }
266 292
       // #ifdef APP-PLUS
267 293
       webHandle("no", "app");
@@ -471,12 +497,12 @@
471 497
       width: 100%;
472 498
       .cube-toolbar-item {
473 499
         flex: 1;
474
-        margin: 0 18rpx;
500
+        margin: 0 1%;
475 501
         height: 68rpx;
476 502
         line-height: 68rpx;
477 503
         border-radius: 8rpx;
478 504
         background: linear-gradient(to right, #72c172, #3bb197);
479
-        font-size: 36rpx;
505
+        font-size: 28rpx;
480 506
         color: #fff;
481 507
         text-align: center;
482 508
       }

+ 108 - 31
pages/scanning_blood_process/scanning_blood_process.vue

@@ -10,8 +10,26 @@
10 10
         <view class="text1"> 操作成功 </view>
11 11
       </view>
12 12
     </view>
13
+    
14
+    <view class="Scanning_top" v-else-if="status == 400">
15
+      <view class="Scanning_top_icon">
16
+        <text class="cubeic-close icon_transport transport-shibai"></text>
17
+      </view>
18
+      <view class="Scanning_top_text">
19
+        <view class="text1"> 操作失败 </view>
20
+        <view class="text1 f30"> 血袋号:{{bloodDTO.bloodCode || '无'}} </view>
21
+        <view class="text1 f30"> 产品码:{{bloodDTO.productCode || '无'}} </view>
22
+        <view class="text1 f30"> 患者:{{bloodDTO.patientName}}<text v-if="bloodDTO.patientNo">({{bloodDTO.patientNo}})</text> </view>
23
+        <view class="text1 f30"> 您扫描的血制品与工单的终点科室不一致,是否收录到此工单? </view>
24
+        <view class="text1 f30 mt8">
25
+          <checkbox-group @change="forceDeptInputBlur">
26
+            <checkbox value="forceDept" :checked="forceDept" color="#49b856" />勾选后本次扫描过程中不再出现此提示
27
+          </checkbox-group>
28
+        </view>
29
+      </view>
30
+    </view>
13 31
 
14
-    <view class="Scanning_top" v-if="status != 200">
32
+    <view class="Scanning_top" v-else>
15 33
       <view class="Scanning_top_icon">
16 34
         <text class="cubeic-close icon_transport transport-shibai"></text>
17 35
       </view>
@@ -35,6 +53,7 @@
35 53
     </view>
36 54
 
37 55
     <view class="foot_btn_spe">
56
+      <view class="btn2" style="width: 98%;" @click="input_common(queryObj.qrcode, 'scan', true)" v-if="status == 400"> 收录到此工单 </view>
38 57
       <view class="btn1" @click="Scanning_again()"> 继续扫描 </view>
39 58
       <view class="btn3" @click="hand_again()">手动录入</view>
40 59
       <view class="btn2" style="width: 98%;" @click="countAndCheck()"> 清点核对 </view>
@@ -56,6 +75,7 @@
56 75
   export default {
57 76
     data() {
58 77
       return {
78
+        forceDept: false,
59 79
         bloodDTO:{},
60 80
         status: 200,
61 81
         speNum: 0,
@@ -68,6 +88,59 @@
68 88
       };
69 89
     },
70 90
     methods: {
91
+      // 录入到工单
92
+      input_common(ress1, type, isFlag = false){
93
+        uni.showLoading({
94
+          title: "加载中",
95
+          mask: true,
96
+        });
97
+        let isInput = this.forceDept ? this.forceDept : (isFlag || undefined);
98
+        post("/transflow/scanBind", {type: 'blood',orderId: this.queryObj.orderId, code: ress1, forceDept: isInput}).then((ress) => {
99
+          uni.hideLoading();
100
+          if (ress.state == 200 && ress.data.state != 400) {
101
+            //扫描标本后会自动调用摄像头,继续扫描,直到status不是200
102
+            setTimeout(()=>{
103
+              if (type === 'scan') {
104
+                this.Scanning_again(this.forceDept);
105
+              }
106
+            },500)
107
+            //todo
108
+            if(this.forceDept){
109
+              uni.redirectTo({
110
+                url: `../scanning_blood_process/scanning_blood_process?orderId=${this.queryObj.orderId}&bloodDTO=${encodeURIComponent(JSON.stringify(ress.data.dto))}&scanCount=${ress.data.scanCount}&status=200&scanOrHand=${type}&isInput=1`,
111
+              });
112
+            }else{
113
+              uni.redirectTo({
114
+                url: `../scanning_blood_process/scanning_blood_process?orderId=${this.queryObj.orderId}&bloodDTO=${encodeURIComponent(JSON.stringify(ress.data.dto))}&scanCount=${ress.data.scanCount}&status=200&scanOrHand=${type}`,
115
+              });
116
+            }
117
+          }else if (ress.state == 200 && ress.data.state == 400 && ress.data.orderState != 5) {
118
+            if(this.forceDept){
119
+              uni.redirectTo({
120
+                url: `../scanning_blood_process/scanning_blood_process?orderId=${this.queryObj.orderId}&bloodDTO=${encodeURIComponent(JSON.stringify(ress.data.data))}&status=400&scanOrHand=${type}&qrcode=${ress1}&isInput=1`,
121
+              });
122
+            }else{
123
+              uni.redirectTo({
124
+                url: `../scanning_blood_process/scanning_blood_process?orderId=${this.queryObj.orderId}&bloodDTO=${encodeURIComponent(JSON.stringify(ress.data.data))}&status=400&scanOrHand=${type}&qrcode=${ress1}`,
125
+              });
126
+            }
127
+          } else {
128
+            if(this.forceDept){
129
+              uni.redirectTo({
130
+                url: `../scanning_blood_process/scanning_blood_process?orderId=${this.queryObj.orderId}&status=500&scanOrHand=${type}&qrcode=${ress1}&isInput=1`,
131
+              });
132
+            }else{
133
+              uni.redirectTo({
134
+                url: `../scanning_blood_process/scanning_blood_process?orderId=${this.queryObj.orderId}&status=500&scanOrHand=${type}&qrcode=${ress1}`,
135
+              });
136
+            }
137
+          }
138
+        });
139
+      },
140
+      // 勾选后本次扫描过程中不再出现此提示
141
+      forceDeptInputBlur(e) {
142
+        this.forceDept = e.detail.value.length > 0;
143
+      },
71 144
       // 手动查询-确认
72 145
       speOk(data) {
73 146
         console.log(data);
@@ -106,7 +179,7 @@
106 179
         this.showHandViewSpecimen();
107 180
       },
108 181
       // 手动输入和扫码公共方法
109
-      hand_scanning_common(ress1, type) {
182
+      hand_scanning_common(ress1, type, isFlag = false) {
110 183
         // ----------------
111 184
         uni.showLoading({
112 185
           title: "加载中",
@@ -128,29 +201,18 @@
128 201
                 if (res.state == 200) {
129 202
                   res.data = res.data || [];
130 203
                   if(res.data.length > 1){
131
-                    uni.navigateTo({
132
-                      url: `/pages/bloodSelect/bloodSelect?qrcode=${codes}&navigateTo=scanning_blood_process&orderId=${this.queryObj.orderId}&scanOrHand=${type}`,
133
-                    });
204
+                    if(this.forceDept){
205
+                      uni.navigateTo({
206
+                        url: `/pages/bloodSelect/bloodSelect?qrcode=${codes}&navigateTo=scanning_blood_process&orderId=${this.queryObj.orderId}&scanOrHand=${type}&isInput=1`,
207
+                      });
208
+                    }else{
209
+                      uni.navigateTo({
210
+                        url: `/pages/bloodSelect/bloodSelect?qrcode=${codes}&navigateTo=scanning_blood_process&orderId=${this.queryObj.orderId}&scanOrHand=${type}`,
211
+                      });
212
+                    }
134 213
                   }else{
135
-                    post("/transflow/scanBind", {type: 'blood',orderId: this.queryObj.orderId, code: ress1}).then((ress) => {
136
-                      uni.hideLoading();
137
-                      if (ress.state == 200 && ress.data.state != 400) {
138
-                        //扫描标本后会自动调用摄像头,继续扫描,直到status不是200
139
-                        setTimeout(()=>{
140
-                          if (type === 'scan') {
141
-                            this.Scanning_again();
142
-                          }
143
-                        },500)
144
-                        //todo
145
-                        uni.redirectTo({
146
-                          url: `../scanning_blood_process/scanning_blood_process?orderId=${this.queryObj.orderId}&bloodDTO=${encodeURIComponent(JSON.stringify(ress.data.dto))}&scanCount=${ress.data.scanCount}&status=200&scanOrHand=${type}`,
147
-                        });
148
-                      } else {
149
-                        uni.redirectTo({
150
-                          url: `../scanning_blood_process/scanning_blood_process?orderId=${this.queryObj.orderId}&status=500&scanOrHand=${type}&qrcode=${ress1}`,
151
-                        });
152
-                      }
153
-                    });
214
+                    // 继续扫描
215
+                    this.input_common(ress1, type, isFlag);
154 216
                   }
155 217
                 } else {
156 218
                   uni.hideLoading();
@@ -175,29 +237,40 @@
175 237
         // ------------------------------
176 238
       },
177 239
       // 继续扫描
178
-      Scanning_again() {
240
+      Scanning_again(isFlag = false) {
179 241
         if (!this.SMFlag) {
180 242
           return;
181 243
         }
182 244
         this.SMFlag = false;
183 245
         SM().then((ress1) => {
184
-          this.hand_scanning_common(ress1, 'scan');
246
+          this.hand_scanning_common(ress1, 'scan', isFlag);
185 247
         }).catch(err => {
186 248
           this.SMFlag = true;
187 249
         });
188 250
       },
189 251
       // 清点核对
190 252
       countAndCheck() {
191
-        uni.navigateTo({
192
-          url: `../check_blood/check_blood?orderId=${this.queryObj.orderId}`,
193
-        });
253
+        if(this.forceDept){
254
+          uni.navigateTo({
255
+            url: `../check_blood/check_blood?orderId=${this.queryObj.orderId}&isInput=1`,
256
+          });
257
+        }else{
258
+          uni.navigateTo({
259
+            url: `../check_blood/check_blood?orderId=${this.queryObj.orderId}`,
260
+          });
261
+        }
194 262
       },
195 263
     },
196 264
     onShow() {
197 265
       this.SMFlag = true;
198 266
     },
199 267
     onLoad(options) {
200
-      console.log(options, "result");
268
+      console.log(options, "result", this.forceDept);
269
+      if(options.isInput == 1){
270
+        this.forceDept = true;
271
+      }else{
272
+        this.forceDept = false;
273
+      }
201 274
       if (options.status == 200 && options.scanOrHand === 'hand') {
202 275
         this.hand_again();
203 276
       }
@@ -208,6 +281,7 @@
208 281
           this.Scanning_again();
209 282
         },500)
210 283
       }
284
+      
211 285
       this.queryObj = options;
212 286
       if (options.bloodDTO) {
213 287
         this.bloodDTO = JSON.parse(options.bloodDTO);
@@ -223,7 +297,10 @@
223 297
     },
224 298
   };
225 299
 </script>
226
-<style lang="less">
300
+<style lang="less" scoped>
301
+  /deep/ uni-checkbox:not([disabled]) .uni-checkbox-input:hover {
302
+    border-color: #49b856 !important;
303
+  }
227 304
   .Scanning_Result {
228 305
     padding: 0 20rpx;
229 306
 

+ 45 - 1
pages/search/search.vue

@@ -75,6 +75,9 @@
75 75
         queryDeptId: '',
76 76
         qrCode: '',
77 77
         // 设置科室二维码 end
78
+        // 选择血制品送达科室 start
79
+        bloodDTO: {},
80
+        // 选择血制品送达科室 end
78 81
         timer: null, //定时器
79 82
         searchText: '', //搜索文本
80 83
         searchData: [], //搜索结果
@@ -116,6 +119,8 @@
116 119
         this.sysDeptType = -1;
117 120
       }  else if (this.type == "pharmacy") { //药房切换科室
118 121
         this.sysDeptType = 386;
122
+      }  else if (this.type == "bloodSelect") { //选择血制品送达科室
123
+        this.bloodDTO = JSON.parse(options.bloodDTO);
119 124
       } else {
120 125
         this.getSysDeptType();
121 126
       }
@@ -200,7 +205,7 @@
200 205
           },
201 206
         };
202 207
         //不是送回病房
203
-        if (this.type != "sendBack" && this.type != "sendBackPatientList" && this.type != "settingCode") {
208
+        if (this.type != "sendBack" && this.type != "sendBackPatientList" && this.type != "settingCode" && this.type != "bloodSelect") {
204 209
           if (this.sysDeptType === 0) {
205 210
             return;
206 211
           } else {
@@ -269,6 +274,42 @@
269 274
           },
270 275
         });
271 276
       },
277
+      // 建单并签到-指定科室
278
+      buildOrderAndSign(deptDto) {
279
+        uni.showModal({
280
+          title: "提示",
281
+          content: `您当前选择的科室为【${deptDto.dept}】,请确认是否建单并签到?`,
282
+          success: (result) => {
283
+            if (result.confirm) {
284
+              console.log("用户点击确定");
285
+              let postData = {
286
+                type: 'blood',
287
+                id: this.bloodDTO.id,
288
+                applyDept: deptDto.id,
289
+              };
290
+              uni.showLoading({
291
+                title: "加载中",
292
+                mask: true,
293
+              });
294
+              post("/transflow/createOrTakeOrder", postData).then((ress) => {
295
+                uni.hideLoading();
296
+                if (ress.state == 200) {
297
+                  uni.navigateTo({
298
+                    url: `../scanning_blood_process/scanning_blood_process?orderId=${ress.data.orderId}&bloodDTO=${encodeURIComponent(JSON.stringify(this.bloodDTO))}&scanCount=${ress.data.scanCount}&status=${ress.state}`,
299
+                  });
300
+                } else {
301
+                  uni.showToast({
302
+                    icon: "none",
303
+                    title: "请求失败!",
304
+                  });
305
+                }
306
+              });
307
+            } else if (result.cancel) {
308
+              console.log("用户点击取消");
309
+            }
310
+          },
311
+        });
312
+      },
272 313
       //执行搜索
273 314
       doSearch(keyword) {
274 315
         keyword = keyword === false ? this.keyword : keyword;
@@ -304,6 +345,9 @@
304 345
             uni.navigateTo({
305 346
               url: `../inspectList/inspectList?id=${arr[0].id}&dept=${arr[0].dept}`,
306 347
             });
348
+          } else if (this.type == "bloodSelect") {
349
+            //血制品建单进入
350
+            this.buildOrderAndSign(arr[0]);
307 351
           } else if (this.type == "pharmacy") {
308 352
             //药房进入
309 353
             uni.navigateTo({

+ 52 - 15
pages/signIn_blood/signIn_blood.vue

@@ -49,6 +49,37 @@
49 49
       };
50 50
     },
51 51
     methods: {
52
+      // 提取的方法
53
+      input_common(ress1, type){
54
+        uni.showLoading({
55
+          title: "加载中",
56
+          mask: true,
57
+        });
58
+        post("/transflow/scanBind", {type: 'blood',orderId: this.queryObj.orderId, code: ress1}).then((ress) => {
59
+          uni.hideLoading();
60
+          if (ress.state == 200 && ress.data.state != 400) {
61
+            //扫描标本后会自动调用摄像头,继续扫描,直到status不是200
62
+            setTimeout(()=>{
63
+              if (type === 'scan') {
64
+                this.Scanning_again();
65
+              }
66
+            },500)
67
+            //todo
68
+            uni.redirectTo({
69
+              url: `../scanning_blood_process/scanning_blood_process?orderId=${this.queryObj.orderId}&bloodDTO=${encodeURIComponent(JSON.stringify(ress.data.dto))}&scanCount=${ress.data.scanCount}&status=200&scanOrHand=${type}`,
70
+            });
71
+            
72
+          }else if (ress.state == 200 && ress.data.state == 400 && ress.data.orderState != 5) {
73
+            uni.redirectTo({
74
+              url: `../scanning_blood_process/scanning_blood_process?orderId=${this.queryObj.orderId}&bloodDTO=${encodeURIComponent(JSON.stringify(ress.data.data))}&status=400&scanOrHand=${type}&qrcode=${ress1}`,
75
+            });
76
+          } else {
77
+            uni.redirectTo({
78
+              url: `../scanning_blood_process/scanning_blood_process?orderId=${this.queryObj.orderId}&status=500&scanOrHand=${type}&qrcode=${ress1}`,
79
+            });
80
+          }
81
+        });
82
+      },
52 83
       // 跳转血制品列表
53 84
       goToList(bloods){
54 85
         uni.navigateTo({
@@ -141,25 +172,31 @@
141 172
           if (result.state == 200 || result.state == 201) {
142 173
             let codes = result.code;
143 174
             if (codes) {
144
-              post("/transflow/scanBind", {type: 'blood',orderId: this.queryObj.orderId, code: ress1}).then((ress) => {
145
-                uni.hideLoading();
146
-                if (ress.state == 200 && ress.data.state != 400) {
147
-                  //扫描标本后会自动调用摄像头,继续扫描,直到status不是200
148
-                  setTimeout(()=>{
149
-                    if (type === 'scan') {
150
-                      this.Scanning_again();
151
-                    }
152
-                  },500)
153
-                  //todo
154
-                  uni.redirectTo({
155
-                    url: `../scanning_blood_process/scanning_blood_process?orderId=${this.queryObj.orderId}&bloodDTO=${encodeURIComponent(JSON.stringify(ress.data.dto))}&scanCount=${ress.data.scanCount}&status=200&scanOrHand=${type}`,
156
-                  });
175
+              // 判断是否有多个血袋号 start
176
+              post("/transflow/scanCheckList", {
177
+                type: 'blood',
178
+                code: codes,
179
+              }).then((res) => {
180
+                if (res.state == 200) {
181
+                  res.data = res.data || [];
182
+                  if(res.data.length > 1){
183
+                    uni.navigateTo({
184
+                      url: `/pages/bloodSelect/bloodSelect?qrcode=${codes}&navigateTo=scanning_blood_process&orderId=${this.queryObj.orderId}&scanOrHand=${type}`,
185
+                    });
186
+                  }else{
187
+                    // 继续扫描
188
+                    this.input_common(ress1, type);
189
+                  }
157 190
                 } else {
158
-                  uni.redirectTo({
159
-                    url: `../scanning_blood_process/scanning_blood_process?orderId=${this.queryObj.orderId}&status=500&scanOrHand=${type}&qrcode=${ress1}`,
191
+                  uni.hideLoading();
192
+                  uni.showToast({
193
+                    icon: "none",
194
+                    title: "请求失败!",
160 195
                   });
161 196
                 }
162 197
               });
198
+              // 判断是否有多个血袋号 end
199
+              
163 200
             } else {
164 201
               uni.hideLoading();
165 202
             }