seimin месяцев назад: 4
Родитель
Сommit
7f7f435694

+ 155 - 4
components/bigScreen/bigScreen.vue

@@ -216,6 +216,144 @@
216 216
           }
217 217
         });
218 218
       },
219
+      //获取药包信息
220
+      getInfo(responeseData, code){
221
+        console.log(responeseData);
222
+        uni.showLoading({
223
+          title: "加载中",
224
+          mask: true,
225
+        });
226
+        
227
+        post(`/transflow/scanInfo`, {type: responeseData.drugsBagType, id: responeseData.drugsBagId, orderStateValue: responeseData.orderStateValue}).then(res => {
228
+          uni.hideLoading();
229
+          if(res.state == 200){
230
+            if(res.data){
231
+              let drugsBag = res.data.dto || {};
232
+              let orderId = responeseData.orderId;
233
+              let config = res.data.taskTypeConfig || {};
234
+              console.log(res);
235
+              if(responeseData.orderStateValue == 2 || responeseData.orderStateValue == 3 || responeseData.orderStateValue == 4){
236
+                // 待抢单、待接单、待到达,进入起点科室流程
237
+                uni.navigateTo({
238
+                  url: `/pages/newDrug/createOrder/createOrder?drugsBagType=${responeseData.drugsBagType}&drugsBagId=${responeseData.drugsBagId}&orderId=${responeseData.orderId || ''}`,
239
+                });
240
+              }else if(responeseData.orderStateValue == 5){
241
+                // 待送达,进入起点科室流程
242
+                this.pageNavigateByConfig(config, responeseData, responeseData, code)
243
+              }
244
+            }
245
+          }else{
246
+            uni.showToast({
247
+              icon: "none",
248
+              title: res.msg || "接口获取数据失败!",
249
+            });
250
+          }
251
+        })
252
+      },
253
+      // 工单完成
254
+      completeOrder(responseData, queryObj){
255
+        console.log(responseData, queryObj)
256
+        uni.showLoading({
257
+          title: "加载中",
258
+          mask: true,
259
+        });
260
+        let postData = {
261
+          "type": queryObj.drugsBagType,
262
+          "orderId": responseData.orderId,
263
+        };
264
+        post('/transflow/checkComplete', postData).then(res => {
265
+          uni.hideLoading();
266
+          if(res.state == 200){
267
+             uni.showToast({
268
+               icon: "none",
269
+               title: responseData.orderStateValue == 4 ? "交接成功,请尽快送达科室!" : (responseData.orderStateValue == 5 ? "交接成功,完成配送!" : ""),
270
+               duration: 60000,
271
+               mask: true,
272
+               complete(){
273
+                 setTimeout(() => {
274
+                   uni.hideToast();
275
+                   uni.redirectTo({
276
+                     url: `/pages/receiptpage/receiptpage`,
277
+                   });
278
+                 }, 2000)
279
+               }
280
+             });
281
+          }else{
282
+            uni.showToast({
283
+              icon: "none",
284
+              title: res.msg || "接口获取数据失败!",
285
+            });
286
+          }
287
+        })
288
+      },
289
+      // 根据配置跳转页面
290
+      pageNavigateByConfig(config, responseData, queryObj, code){
291
+        let drugsBagType = queryObj.drugsBagType;
292
+        let orderId = responseData.orderId;
293
+        let drugsBagId = responseData.drugsBagId;
294
+        let orderStateValue = responseData.orderStateValue;
295
+        if(config.drugsModel === 1){
296
+          // 一单一码
297
+          if(responseData.orderStateValue == 4){
298
+            // 待到达
299
+            if(config.drugsStartCheck === 1){
300
+              // 起点科室支持核对
301
+              uni.navigateTo({
302
+                url: `/pages/newDrug/checkPage/checkPage?drugsBagType=${drugsBagType}&orderId=${orderId}`,
303
+              });
304
+            }else{
305
+              // 起点科室不支持核对
306
+              if(config.drugsStartPhoto === 1){
307
+                // 起点科室支持拍照留存
308
+                uni.navigateTo({
309
+                  url: `/pages/newDrug/photoRetention/photoRetention?drugsBagType=${drugsBagType}&orderId=${orderId}`,
310
+                });
311
+              }else{
312
+                // 起点科室不支持拍照留存
313
+                this.completeOrder(responseData, queryObj);
314
+              }
315
+            }
316
+          }else if(responseData.orderStateValue == 5){
317
+            // 待送达
318
+            if(config.drugsEndCheck === 1){
319
+              // 起点科室支持核对
320
+              uni.navigateTo({
321
+                url: `/pages/newDrug/checkPage/checkPage?drugsBagType=${drugsBagType}&orderId=${orderId}`,
322
+              });
323
+            }else{
324
+              // 起点科室不支持核对
325
+              if(config.drugsEndPhoto === 1){
326
+                // 起点科室支持拍照留存
327
+                uni.navigateTo({
328
+                  url: `/pages/newDrug/photoRetention/photoRetention?drugsBagType=${drugsBagType}&orderId=${orderId}`,
329
+                });
330
+              }else{
331
+                // 终点科室不支持拍照留存
332
+                this.completeOrder(responseData, queryObj);
333
+              }
334
+            }
335
+          }
336
+        }else if(config.drugsModel === 2){
337
+          // 一单多码
338
+          uni.showLoading({
339
+            title: "加载中",
340
+            mask: true,
341
+          });
342
+          post("/transflow/scanBind", { type: drugsBagType, orderId, code }).then((ress) => {
343
+            uni.hideLoading();
344
+            if (ress.state == 200 && ress.data.state != 501 && ress.data.state != 502) {
345
+              uni.navigateTo({
346
+                url: `/pages/newDrug/continueScanning/continueScanning?drugsBagType=${drugsBagType}&orderId=${orderId}&drugsBagId=${drugsBagId}&orderStateValue=${orderStateValue}`,
347
+              });
348
+            } else {
349
+              uni.showToast({
350
+                icon: "none",
351
+                title: ress.msg || "接口获取数据失败!",
352
+              });
353
+            }
354
+          });
355
+        }
356
+      },
219 357
       // 底部扫描
220 358
       Scanning(qrcodePrefix = '') {
221 359
         if (!this.SMFlag) {
@@ -325,10 +463,23 @@
325 463
                           });
326 464
                         }
327 465
                       } else if (res.type == 'drugsBag') {
328
-                        //扫药包码
329
-                        uni.navigateTo({
330
-                          url: `/pages/scanning_drug/scanning_drug?drugsBagId=${res.drugsBagId}&drugsBagBatchNo=${res.drugsBagBatchNo}`,
331
-                        });
466
+                        if (res.drugsBagType == 'drugsJpbag' || res.drugsBagType == 'drugsWestern' || res.drugsBagType == 'drugsReturn' || res.drugsBagType == 'drugsPoison' || res.drugsBagType == 'drugsHerbal') {
467
+                          //新药品-扫静配|西药|退药|毒麻|中草药
468
+                          if(res.orderId){
469
+                            // 有工单
470
+                            this.getInfo(res, code);
471
+                          }else{
472
+                            // 没有工单,进入起点科室流程
473
+                            uni.navigateTo({
474
+                              url: `/pages/newDrug/createOrder/createOrder?drugsBagType=${res.drugsBagType}&drugsBagId=${res.drugsBagId}&orderId=${res.orderId || ''}`,
475
+                            });
476
+                          }
477
+                        }else{
478
+                          //扫药包码
479
+                          uni.navigateTo({
480
+                            url: `/pages/scanning_drug/scanning_drug?drugsBagId=${res.drugsBagId}&drugsBagBatchNo=${res.drugsBagBatchNo}`,
481
+                          });
482
+                        }
332 483
                       } else if (res.type == 'nucleicAcid') {
333 484
                         //扫核酸码
334 485
                         uni.navigateTo({

+ 7 - 0
http/http.js

@@ -283,3 +283,10 @@ function startAudio() {
283 283
   //     }
284 284
   // });
285 285
 }
286
+
287
+/**
288
+ * 上传附件
289
+ */
290
+export function api_uploadAttachment(type, id){
291
+  return `${path}/common/common/uploadAttachment/${type}/${id}/${id}`
292
+}

+ 49 - 1
pages.json

@@ -656,7 +656,55 @@
656 656
 		      "titleNView": false
657 657
 		    }
658 658
 		  }
659
-		}
659
+		},
660
+    {
661
+      "path": "pages/newDrug/detail", //新药品-药品详情
662
+      "style": {
663
+        "h5": {
664
+          "titleNView": false
665
+        }
666
+      }
667
+    },
668
+    {
669
+      "path": "pages/newDrug/list", //新药品-药品列表
670
+      "style": {
671
+        "h5": {
672
+          "titleNView": false
673
+        }
674
+      }
675
+    },
676
+    {
677
+      "path": "pages/newDrug/createOrder/createOrder", //新药品-创建工单
678
+      "style": {
679
+        "h5": {
680
+          "titleNView": false
681
+        }
682
+      }
683
+    },
684
+    {
685
+      "path": "pages/newDrug/continueScanning/continueScanning", //新药品-继续扫描
686
+      "style": {
687
+        "h5": {
688
+          "titleNView": false
689
+        }
690
+      }
691
+    },
692
+    {
693
+      "path": "pages/newDrug/checkPage/checkPage", //新药品-核对交接
694
+      "style": {
695
+        "h5": {
696
+          "titleNView": false
697
+        }
698
+      }
699
+    },
700
+    {
701
+      "path": "pages/newDrug/photoRetention/photoRetention", //新药品-照片留存
702
+      "style": {
703
+        "h5": {
704
+          "titleNView": false
705
+        }
706
+      }
707
+    }
660 708
   ],
661 709
   "globalStyle": {
662 710
     "navigationBarTextStyle": "black",

+ 448 - 0
pages/newDrug/checkPage/checkPage.vue

@@ -0,0 +1,448 @@
1
+<template>
2
+  <view class="Scanning_Result">
3
+    <view class="Scanning_top">
4
+      <view class="Scanning_top_icon">
5
+        {{workOrder.startDept ? workOrder.startDept.dept : ''}}<text class="newicon newicon-arrow-right-full"></text>{{workOrder.endDeptNames || ''}}
6
+      </view>
7
+    </view>
8
+
9
+    <view class="Scanning_cont">
10
+      <view class="column head">
11
+        <view class="value1">单号<text class="red">({{drugsBagList.length}})</text></view>
12
+        <view class="value2">种类数</view>
13
+        <view class="value3">总数</view>
14
+      </view>
15
+      <scroll-view scroll-y class="scrollContent">
16
+        <view class="column" v-for="item in drugsBagList" :key="item.id" @click="toDetail(item.id)">
17
+          <view class="value1">{{item.batchNo}}</view>
18
+          <view class="value2">{{item.drugsTypeCount}}</view>
19
+          <view class="value3">{{item.drugsCount}}</view>
20
+        </view>
21
+      </scroll-view>
22
+    </view>
23
+
24
+    <view class="foot_btn_spe">
25
+      <view class="column">
26
+        <view class="btn" @click="scanCode()">扫一扫交接</view>
27
+        <view class="btn" @click="fillInManually(config.drugsStartManual.value)" v-if="workOrder.gdState && workOrder.gdState.value == 4 && config.drugsStartManual">{{config.drugsStartManual.name}}</view>
28
+        <view class="btn" @click="fillInManually(config.drugsStartManual.value)" v-if="workOrder.gdState && workOrder.gdState.value == 5 && config.drugsEndManual">{{config.drugsEndManual.name}}</view>
29
+      </view>
30
+    </view>
31
+    <!-- 填写交接人工号弹窗 -->
32
+    <selectAccount @click.stop.native v-if="hosModels.disjunctor" :disjunctor="hosModels.disjunctor" @ok="hosOk"
33
+      @cancel="hosCancel">
34
+    </selectAccount>
35
+  </view>
36
+</template>
37
+<script>
38
+  import {
39
+    get,
40
+    post,
41
+    SM,
42
+    webHandle
43
+  } from "@/http/http.js";
44
+  export default {
45
+    data() {
46
+      return {
47
+        hosId: uni.getStorageSync('userData').user.currentHospital.id,
48
+        drugsBagList: [], //药包列表
49
+        queryObj: {}, //路由传递过来的数据
50
+        workOrder: {}, //工单信息
51
+        config: {}, //配置
52
+        SMFlag: true, //控制扫码
53
+        // 填写交接人工号弹窗model
54
+        hosModels: {
55
+          disjunctor: false,
56
+        },
57
+      };
58
+    },
59
+    onShow() {
60
+      this.SMFlag = true;
61
+    },
62
+    methods: {
63
+      // 手动填写
64
+      fillInManually(value){
65
+        if(value == 1){
66
+          // 填写工号
67
+          this.showSelectAccount();
68
+        }
69
+      },
70
+      // 填写交接人工号-确认
71
+      hosOk(data) {
72
+        console.log(data);
73
+        const {
74
+          accountName,
75
+          account,
76
+          accountId
77
+        } = data;
78
+        if (!accountName && !account) {
79
+          //没有填写交接人
80
+          uni.showModal({
81
+            title: "提示",
82
+            content: "请填写交接人工号!",
83
+            showCancel: false,
84
+            success: function(res) {
85
+              if (res.confirm) {
86
+                console.log("用户点击确定");
87
+              } else if (res.cancel) {
88
+                console.log("用户点击取消");
89
+              }
90
+            },
91
+          });
92
+          return;
93
+        } else if ((!accountName && account) || (accountName && !account)) {
94
+          //没有填写交接人
95
+          uni.showModal({
96
+            title: "提示",
97
+            content: "请填写正确的交接人工号!",
98
+            showCancel: false,
99
+            success: function(res) {
100
+              if (res.confirm) {
101
+                console.log("用户点击确定");
102
+              } else if (res.cancel) {
103
+                console.log("用户点击取消");
104
+              }
105
+            },
106
+          });
107
+          return;
108
+        }
109
+        this.hosModels.disjunctor = false;
110
+        this.validateAccount(data);
111
+      },
112
+      // 填写交接人工号-取消
113
+      hosCancel() {
114
+        this.hosModels.disjunctor = false;
115
+        this.flag = true;
116
+      },
117
+      // 填写交接人工号弹窗
118
+      showSelectAccount() {
119
+        this.hosModels = {
120
+          disjunctor: true,
121
+        };
122
+      },
123
+      // 手动填写工号校验
124
+      validateAccount(accountObj){
125
+        const {
126
+          accountName,
127
+          account,
128
+          accountId
129
+        } = accountObj;
130
+        uni.showLoading({
131
+          title: "加载中",
132
+          mask: true,
133
+        });
134
+        
135
+        let postData = {
136
+          extraType: 'inputAccountValid',
137
+          type: this.queryObj.drugsBagType,
138
+          orderStateValue: this.workOrder.gdState.value,
139
+          userId: accountId,
140
+          orderId: this.workOrder.id,
141
+        }
142
+        
143
+        post("/transflow/extra", postData)
144
+          .then((res) => {
145
+            uni.hideLoading();
146
+            if(res.state == 200){
147
+              if(res.data){
148
+                if (res.data.codeBean) {
149
+                  if(res.data.codeBean.valid){
150
+                    this.pageNavigateByConfig(this.config, this.workOrder, this.queryObj, { id: accountId, name: accountName }, res.data.codeBean.departmentDTO);
151
+                  }else{
152
+                    uni.showToast({
153
+                      icon: "none",
154
+                      title: res.data.codeBean.msg || "接口获取数据失败!",
155
+                    });
156
+                  }
157
+                } else {
158
+                  uni.showToast({
159
+                    icon: "none",
160
+                    title: "接口获取数据失败!",
161
+                  });
162
+                }
163
+              }else{
164
+                uni.showToast({
165
+                  icon: "none",
166
+                  title: "接口获取数据失败!",
167
+                });
168
+              }
169
+            }else{
170
+              uni.showToast({
171
+                icon: "none",
172
+                title: res.msg || "接口获取数据失败!",
173
+              });
174
+            }
175
+          });
176
+      },
177
+      // 工单完成
178
+      completeOrder(workOrder, queryObj, accountObj){
179
+        uni.showLoading({
180
+          title: "加载中",
181
+          mask: true,
182
+        });
183
+        let postData = {
184
+          "type": queryObj.drugsBagType,
185
+          "orderId": workOrder.id,
186
+          "handover": accountObj ? accountObj.id : undefined,
187
+        };
188
+        post('/transflow/checkComplete', postData).then(res => {
189
+          uni.hideLoading();
190
+          if(res.state == 200){
191
+            uni.showToast({
192
+              icon: "none",
193
+              title: workOrder.gdState.value == 4 ? "交接成功,请尽快送达科室!" : (workOrder.gdState.value == 5 ? "交接成功,完成配送!" : ""),
194
+              duration: 60000,
195
+              mask: true,
196
+              complete(){
197
+                setTimeout(() => {
198
+                  uni.hideToast();
199
+                  uni.redirectTo({
200
+                    url: `/pages/receiptpage/receiptpage`,
201
+                  });
202
+                }, 2000)
203
+              }
204
+            });
205
+          }else{
206
+            uni.showToast({
207
+              icon: "none",
208
+              title: res.msg || "接口获取数据失败!",
209
+            });
210
+          }
211
+        })
212
+      },
213
+      // 根据配置跳转页面
214
+      pageNavigateByConfig(config, workOrder, queryObj, accountObj, departmentDTO){
215
+        console.log(accountObj, departmentDTO);
216
+        let drugsBagType = queryObj.drugsBagType;
217
+        let orderId = workOrder.id;
218
+        if(workOrder.gdState.value == 4){
219
+          // 待到达
220
+          if(config.drugsStartPhoto === 1){
221
+            // 起点科室支持拍照留存
222
+            uni.navigateTo({
223
+              url: `/pages/newDrug/photoRetention/photoRetention?drugsBagType=${drugsBagType}&orderId=${orderId}&accountId=${accountObj ? accountObj.id : ''}&accountName=${accountObj ? accountObj.name : ''}&accountDeptName=${departmentDTO ? departmentDTO.dept : ''}`,
224
+            });
225
+          }else{
226
+            // 起点科室不支持拍照留存
227
+            this.completeOrder(workOrder, queryObj, accountObj);
228
+          }
229
+        }else if(workOrder.gdState.value == 5){
230
+          // 待送达
231
+          if(config.drugsEndPhoto === 1){
232
+            // 起点科室支持拍照留存
233
+            uni.navigateTo({
234
+              url: `/pages/newDrug/photoRetention/photoRetention?drugsBagType=${drugsBagType}&orderId=${orderId}&accountId=${accountObj.id || ''}&accountName=${accountObj.name || ''}&accountDeptName=${departmentDTO ? departmentDTO.dept : ''}`,
235
+            });
236
+          }else{
237
+            // 起点科室不支持拍照留存
238
+            this.completeOrder(workOrder, queryObj, accountObj);
239
+          }
240
+        }
241
+      },
242
+      // 扫一扫交接
243
+      scanCode(){
244
+        if (!this.SMFlag) {
245
+          return;
246
+        }
247
+        this.SMFlag = false;
248
+        SM().then((content) => {
249
+          uni.showLoading({
250
+            title: "加载中",
251
+            mask: true,
252
+          });
253
+          
254
+          let postData = {
255
+            type: this.queryObj.drugsBagType,
256
+            orderStateValue: this.workOrder.gdState.value,
257
+            code: content,
258
+            orderId: this.workOrder.id,
259
+          }
260
+          
261
+          post("/transflow/bigScan", postData)
262
+            .then((res) => {
263
+              this.SMFlag = true;
264
+              uni.hideLoading();
265
+              if (res.codeBean) {
266
+                if(res.codeBean.valid){
267
+                  this.pageNavigateByConfig(this.config, this.workOrder, this.queryObj, res.codeBean.userDTO, res.codeBean.departmentDTO);
268
+                }else{
269
+                  uni.showToast({
270
+                    icon: "none",
271
+                    title: res.codeBean.msg || "接口获取数据失败!",
272
+                  });
273
+                }
274
+              } else {
275
+                uni.showToast({
276
+                  icon: "none",
277
+                  title: "接口获取数据失败!",
278
+                });
279
+              }
280
+            });
281
+        }).catch(err => {
282
+          this.SMFlag = true;
283
+        });
284
+      },
285
+      // 详情
286
+      toDetail(drugsBagId){
287
+        uni.navigateTo({
288
+          url: `/pages/newDrug/detail?drugsBagType=${this.queryObj.drugsBagType}&drugsBagId=${drugsBagId}`,
289
+        });
290
+      },
291
+      // 初始化
292
+      init(){
293
+        uni.showLoading({
294
+          title: "加载中",
295
+          mask: true,
296
+        });
297
+        
298
+        let info$ = post(`/transflow/extra`, {type: this.queryObj.drugsBagType, extraType: 'orderInfo', orderId: +this.queryObj.orderId});
299
+        let config$ = post(`/simple/data/fetchDataList/taskTypeConfig`, {
300
+            "idx": 0,
301
+            "sum": 1,
302
+            "taskTypeConfig": {
303
+                "taskTypeDTO": {
304
+                    "hosId": {
305
+                        "id": this.hosId
306
+                    },
307
+                    "ordinaryField": {
308
+                        "key": "ordinary_field",
309
+                        "value": this.queryObj.drugsBagType
310
+                    }
311
+                }
312
+            }
313
+        });
314
+        
315
+        Promise.all([info$, config$]).then(result => {
316
+          uni.hideLoading();
317
+          let [info, config] = result || [];
318
+          
319
+          if(info.state == 200){
320
+            if(info.data){
321
+              this.drugsBagList = info.data.drugsBagList || [];
322
+              if(Array.isArray(info.data.workOrder.endDepts)){
323
+                info.data.workOrder.endDeptNames = info.data.workOrder.endDepts.map(v => v.dept).join();
324
+              }
325
+              this.workOrder = info.data.workOrder || {};
326
+            }
327
+          }else{
328
+            uni.showToast({
329
+              icon: "none",
330
+              title: info.msg || "接口获取数据失败!",
331
+            });
332
+          }
333
+          
334
+          if(config.status == 200){
335
+            let list  = config.list || [];
336
+            this.config = list.length ? list[0] : {};
337
+          }else{
338
+            uni.showToast({
339
+              icon: "none",
340
+              title: config.msg || "接口获取数据失败!",
341
+            });
342
+          }
343
+        })
344
+      },
345
+    },
346
+    onLoad(options) {
347
+      console.log(options, "options");
348
+      this.queryObj = options;
349
+      this.init();
350
+      // #ifdef APP-PLUS
351
+      webHandle("no", "app");
352
+      // #endif
353
+      // #ifdef H5
354
+      webHandle("no", "wx");
355
+      // #endif
356
+    },
357
+  };
358
+</script>
359
+<style lang="less" scoped>
360
+  .Scanning_Result {
361
+    background: #FAFBFD;
362
+    padding: 0 24rpx;
363
+    display: flex;
364
+    flex-direction: column;
365
+    height: 100vh;
366
+
367
+    .Scanning_top {
368
+      margin: 24rpx auto;
369
+      .Scanning_top_icon {
370
+        font-size: 30rpx;
371
+        font-weight: bold;
372
+        .newicon{
373
+          margin: 0 32rpx;
374
+        }
375
+      }
376
+    }
377
+
378
+    .Scanning_cont {
379
+      flex: 1;
380
+      min-height: 0;
381
+      display: flex;
382
+      flex-direction: column;
383
+      .scrollContent{
384
+        flex: 1;
385
+        min-height: 0;
386
+      }
387
+      .column{
388
+        display: flex;
389
+        justify-content: center;
390
+        align-items: center;
391
+        font-size: 28rpx;
392
+        padding: 32rpx 24rpx;
393
+        color: #565656;
394
+        border-bottom: 1rpx solid #D9D9D9;
395
+        gap: 8rpx;
396
+        &.head{
397
+          font-size: 30rpx;
398
+          color: #000000;
399
+          border: 1rpx solid #D9D9D9;
400
+          box-shadow: 0rpx 3rpx 6rpx 1rpx rgba(0,0,0,0.16);
401
+          background: #FBFCFE;
402
+        }
403
+        .value1{
404
+          flex: 2;
405
+          text-align: left;
406
+          word-break: break-all;
407
+          flex-shrink: 0;
408
+        }
409
+        .value2,.value3{
410
+          flex: 1;
411
+          text-align: center;
412
+          word-break: break-all;
413
+          flex-shrink: 0;
414
+        }
415
+      }
416
+    }
417
+
418
+    .foot_btn_spe {
419
+      margin: 24rpx 0;
420
+      display: flex;
421
+      flex-direction: column;
422
+      align-items: center;
423
+      gap: 24rpx;
424
+      font-weight: bold;
425
+      
426
+      .column{
427
+        width: 100%;
428
+        height: 78rpx;
429
+        display: flex;
430
+        align-items: center;
431
+        justify-content: space-between;
432
+        gap: 24rpx;
433
+        
434
+        .btn {
435
+          height: 100%;
436
+          flex: 1;
437
+          background: linear-gradient( 90deg, #6FC073 0%, #3DB197 100%);
438
+          color: #fff;
439
+          border-radius: 4rpx;
440
+          font-size: 30rpx;
441
+          display: flex;
442
+          justify-content: center;
443
+          align-items: center;
444
+        }
445
+      }
446
+    }
447
+  }
448
+</style>

+ 284 - 0
pages/newDrug/continueScanning/continueScanning.vue

@@ -0,0 +1,284 @@
1
+<template>
2
+  <view class="Scanning_Result">
3
+    <view class="Scanning_top">
4
+      <view class="Scanning_top_icon">{{scanCount}}</view>
5
+    </view>
6
+
7
+    <view class="Scanning_cont">
8
+      <scroll-view scroll-y class="scrollContent">
9
+        <view class="column">
10
+          <view class="name">单号:</view>
11
+          <view class="value">{{drugsBag.batchNo}}</view>
12
+        </view>
13
+        <view class="column">
14
+          <view class="name">申请科室:</view>
15
+          <view class="value">{{drugsBag.target ? drugsBag.target.dept : ''}}</view>
16
+        </view>
17
+        <view class="column">
18
+          <view class="name">发药科室:</view>
19
+          <view class="value">{{drugsBag.launch ? drugsBag.launch.dept : ''}}</view>
20
+        </view>
21
+        <view class="column">
22
+          <view class="name">种类数:</view>
23
+          <view class="value">{{drugsBag.drugsTypeCount}}</view>
24
+        </view>
25
+        <view class="column">
26
+          <view class="name">药品数:</view>
27
+          <view class="value">{{drugsBag.drugsCount}}</view>
28
+        </view>
29
+      </scroll-view>
30
+    </view>
31
+
32
+    <view class="foot_btn_spe">
33
+      <view class="column">
34
+        <view class="btn" @click="Scanning_again()">继续扫描</view>
35
+        <view class="btn" @click="hand_again()">手动录入</view>
36
+      </view>
37
+      <view class="column">
38
+        <view class="btn" @click="checkHandover()">核对交接</view>
39
+      </view>
40
+    </view>
41
+    <!-- 手动查询药品弹窗 -->
42
+    <handViewDrugsBag v-if="drugbagModels.disjunctor" :title="drugbagModels.title"
43
+      :disjunctor="drugbagModels.disjunctor" @ok="drugbagOk" @cancel="drugbagCancel">
44
+    </handViewDrugsBag>
45
+  </view>
46
+</template>
47
+<script>
48
+  import {
49
+    get,
50
+    post,
51
+    SM,
52
+    webHandle
53
+  } from "@/http/http.js";
54
+  export default {
55
+    data() {
56
+      return {
57
+        drugsBag: {}, //药包信息
58
+        queryObj: {}, //路由传递过来的数据
59
+        scanCount: '', //已扫描数量
60
+        SMFlag: true,
61
+        // 手动查询弹窗model
62
+        drugbagModels: {
63
+          disjunctor: false,
64
+        },
65
+      };
66
+    },
67
+    onShow() {
68
+      this.SMFlag = true;
69
+    },
70
+    methods: {
71
+      // 手动查询药品-确认
72
+      drugbagOk(data) {
73
+        console.log(data);
74
+        if (!data.id) {
75
+          //没有查询到药品
76
+          uni.showModal({
77
+            title: '提示',
78
+            content: "没有查询到发药单号!",
79
+            showCancel: false,
80
+            success: function(res) {
81
+              if (res.confirm) {
82
+                console.log('用户点击确定');
83
+              } else if (res.cancel) {
84
+                console.log('用户点击取消');
85
+              }
86
+            }
87
+          });
88
+          return;
89
+        }
90
+        this.drugbagModels.disjunctor = false;
91
+        this.hand_scanning_common(data.packid, 'hand');
92
+      },
93
+      // 手动查询药品-取消
94
+      drugbagCancel() {
95
+        this.drugbagModels.disjunctor = false;
96
+      },
97
+      // 手动查询药品弹窗
98
+      showHandViewDrugsbag() {
99
+        this.drugbagModels = {
100
+          title: '填写发药单号',
101
+          disjunctor: true,
102
+        }
103
+      },
104
+      // 手动录入
105
+      hand_again() {
106
+        this.showHandViewDrugsbag();
107
+      },
108
+      // 核对交接
109
+      checkHandover(){
110
+        uni.navigateTo({
111
+          url: `/pages/newDrug/checkPage/checkPage?drugsBagType=${this.queryObj.drugsBagType}&orderId=${this.queryObj.orderId}`,
112
+        });
113
+      },
114
+      // 继续扫描
115
+      Scanning_again(isFlag = false) {
116
+        if (!this.SMFlag) {
117
+          return;
118
+        }
119
+        this.SMFlag = false;
120
+        SM().then((ress1) => {
121
+          this.hand_scanning_common(ress1, 'scan', isFlag);
122
+        }).catch(err => {
123
+          this.SMFlag = true;
124
+        });
125
+      },
126
+      // 手动输入和扫码公共方法
127
+      hand_scanning_common(ress1, type, isFlag = false) {
128
+        // ----------------
129
+        uni.showLoading({
130
+          title: "加载中",
131
+          mask: true,
132
+        });
133
+        //检验二维码的有效性
134
+        post("/dept/scanning", {
135
+          content: ress1,
136
+        }).then((result) => {
137
+          this.SMFlag = true;
138
+          if (result.state == 200 || result.state == 201) {
139
+            let codes = result.code;
140
+            if (codes) {
141
+              this.input_common(ress1, type, isFlag);
142
+            } else {
143
+              uni.hideLoading();
144
+            }
145
+          } else {
146
+            uni.hideLoading();
147
+            uni.showToast({
148
+              icon: "none",
149
+              title: result.info || "接口获取数据失败!",
150
+            });
151
+          }
152
+        });
153
+        // ------------------------------
154
+      },
155
+      // 录入到工单
156
+      input_common(ress1, type, isFlag = false){
157
+        uni.showLoading({
158
+          title: "加载中",
159
+          mask: true,
160
+        });
161
+        post("/transflow/scanBind", { type: this.queryObj.drugsBagType, orderId: this.queryObj.orderId, code: ress1 }).then((ress) => {
162
+          uni.hideLoading();
163
+          if (ress.state == 200 && ress.data.state != 501 && ress.data.state != 502) {
164
+            uni.redirectTo({
165
+              url: `/pages/newDrug/continueScanning/continueScanning?drugsBagType=${this.queryObj.drugsBagType}&orderId=${this.queryObj.orderId}&scanOrHand=${type}&drugsBagId=${this.queryObj.drugsBagId}&orderStateValue=${this.queryObj.orderStateValue}`,
166
+            });
167
+          } else {
168
+            uni.showToast({
169
+              icon: "none",
170
+              title: ress.msg || "接口获取数据失败!",
171
+            });
172
+          }
173
+        });
174
+      },
175
+      //获取页面信息
176
+      getInfo(){
177
+        uni.showLoading({
178
+          title: "加载中",
179
+          mask: true,
180
+        });
181
+        
182
+        post(`/transflow/scanInfo`, {type: this.queryObj.drugsBagType, id: +this.queryObj.drugsBagId, orderStateValue: this.queryObj.orderStateValue}).then(res => {
183
+          uni.hideLoading();
184
+          if(res.state == 200){
185
+            if(res.data){
186
+              this.scanCount = res.data.scanCount;
187
+              this.drugsBag = res.data.dto || {};
188
+            }
189
+          }else{
190
+            uni.showToast({
191
+              icon: "none",
192
+              title: res.msg || "接口获取数据失败!",
193
+            });
194
+          }
195
+        })
196
+      },
197
+    },
198
+    onLoad(options) {
199
+      console.log(options, "options");
200
+      this.queryObj = options;
201
+      this.getInfo();
202
+      // #ifdef APP-PLUS
203
+      webHandle("no", "app");
204
+      // #endif
205
+      // #ifdef H5
206
+      webHandle("no", "wx");
207
+      // #endif
208
+    },
209
+  };
210
+</script>
211
+<style lang="less" scoped>
212
+  .Scanning_Result {
213
+    background: #FAFBFD;
214
+    padding: 0 24rpx;
215
+    display: flex;
216
+    flex-direction: column;
217
+    height: 100vh;
218
+
219
+    .Scanning_top {
220
+      margin: 24rpx auto;
221
+      .Scanning_top_icon {
222
+        font-size: 140rpx;
223
+        color: #FF0000;
224
+        font-weight: bold;
225
+      }
226
+    }
227
+
228
+    .Scanning_cont {
229
+      flex: 1;
230
+      min-height: 0;
231
+      display: flex;
232
+      flex-direction: column;
233
+      .scrollContent{
234
+        flex: 1;
235
+        min-height: 0;
236
+      }
237
+      .column{
238
+        display: flex;
239
+        justify-content: center;
240
+        align-items: center;
241
+        font-size: 30rpx;
242
+        margin-bottom: 32rpx;
243
+        .name{
244
+          font-weight: bold;
245
+          word-break: break-all;
246
+          flex-shrink: 0;
247
+        }
248
+        .value{
249
+          word-break: break-all;
250
+        }
251
+      }
252
+    }
253
+
254
+    .foot_btn_spe {
255
+      margin: 24rpx 0;
256
+      display: flex;
257
+      flex-direction: column;
258
+      align-items: center;
259
+      gap: 24rpx;
260
+      font-weight: bold;
261
+      
262
+      .column{
263
+        width: 100%;
264
+        height: 78rpx;
265
+        display: flex;
266
+        align-items: center;
267
+        justify-content: space-between;
268
+        gap: 24rpx;
269
+        
270
+        .btn {
271
+          height: 100%;
272
+          flex: 1;
273
+          background: linear-gradient( 90deg, #6FC073 0%, #3DB197 100%);
274
+          color: #fff;
275
+          border-radius: 4rpx;
276
+          font-size: 30rpx;
277
+          display: flex;
278
+          justify-content: center;
279
+          align-items: center;
280
+        }
281
+      }
282
+    }
283
+  }
284
+</style>

+ 304 - 0
pages/newDrug/createOrder/createOrder.vue

@@ -0,0 +1,304 @@
1
+<template>
2
+  <view class="Scanning_Result">
3
+    <view class="Scanning_top">
4
+      <view class="Scanning_top_icon">
5
+        <text class="cubeic-ok newicon newicon-duigou"></text>
6
+      </view>
7
+    </view>
8
+
9
+    <view class="Scanning_cont">
10
+      <scroll-view scroll-y class="scrollContent">
11
+        <view class="column">
12
+          <view class="name">单号:</view>
13
+          <view class="value">{{drugsBag.batchNo}}</view>
14
+        </view>
15
+        <view class="column">
16
+          <view class="name">申请科室:</view>
17
+          <view class="value">{{drugsBag.target ? drugsBag.target.dept : ''}}</view>
18
+        </view>
19
+        <view class="column">
20
+          <view class="name">发药科室:</view>
21
+          <view class="value">{{drugsBag.launch ? drugsBag.launch.dept : ''}}</view>
22
+        </view>
23
+        <view class="column">
24
+          <view class="name">种类数:</view>
25
+          <view class="value">{{drugsBag.drugsTypeCount}}</view>
26
+        </view>
27
+        <view class="column">
28
+          <view class="name">药品数:</view>
29
+          <view class="value">{{drugsBag.drugsCount}}</view>
30
+        </view>
31
+      </scroll-view>
32
+    </view>
33
+
34
+    <view class="foot_btn_spe">
35
+      <view class="column">
36
+        <view class="btn" @click="goIndex()">知道了</view>
37
+        <view class="btn" @click="createOrBuildOrder()" v-if="!orderId && config.drugsCreateSign === 1">建单并签到</view>
38
+        <view class="btn" @click="createOrBuildOrder(orderId)" v-if="orderId && config.drugsReceiveSign === 1">接单并签到</view>
39
+      </view>
40
+    </view>
41
+  </view>
42
+</template>
43
+<script>
44
+  import {
45
+    get,
46
+    post,
47
+    SM,
48
+    webHandle
49
+  } from "@/http/http.js";
50
+  export default {
51
+    data() {
52
+      return {
53
+        queryObj: {}, //路由传递过来的数据
54
+        drugsBag: {}, //药包信息
55
+        config: {}, //药品的业务流程配置
56
+        orderId: undefined, //根据药包查询到的工单ID
57
+      };
58
+    },
59
+    methods: {
60
+      // 知道了
61
+      goIndex(){
62
+       uni.redirectTo({
63
+         url: `/pages/receiptpage/receiptpage`,
64
+       });
65
+      },
66
+      // 根据配置跳转页面
67
+      pageNavigateByConfig(config, responseData, queryObj){
68
+        let drugsBagType = queryObj.drugsBagType;
69
+        let orderId = responseData.orderId;
70
+        let drugsBagId = queryObj.drugsBagId;
71
+        let orderStateValue = responseData.orderStateValue;
72
+        if(config.drugsModel === 1){
73
+          // 一单一码
74
+          if(responseData.orderStateValue == 4){
75
+            // 待到达
76
+            if(config.drugsStartCheck === 1){
77
+              // 起点科室支持核对
78
+              uni.navigateTo({
79
+                url: `/pages/newDrug/checkPage/checkPage?drugsBagType=${drugsBagType}&orderId=${orderId}`,
80
+              });
81
+            }else{
82
+              // 起点科室不支持核对
83
+              if(config.drugsStartPhoto === 1){
84
+                // 起点科室支持拍照留存
85
+                uni.navigateTo({
86
+                  url: `/pages/newDrug/photoRetention/photoRetention?drugsBagType=${drugsBagType}&orderId=${orderId}`,
87
+                });
88
+              }else{
89
+                // 起点科室不支持拍照留存
90
+                this.completeOrder(responseData, queryObj);
91
+              }
92
+            }
93
+          }else if(responseData.orderStateValue == 5){
94
+            // 待送达
95
+            if(config.drugsEndCheck === 1){
96
+              // 起点科室支持核对
97
+              uni.navigateTo({
98
+                url: `/pages/newDrug/checkPage/checkPage?drugsBagType=${drugsBagType}&orderId=${orderId}`,
99
+              });
100
+            }else{
101
+              // 起点科室不支持核对
102
+              if(config.drugsEndPhoto === 1){
103
+                // 起点科室支持拍照留存
104
+                uni.navigateTo({
105
+                  url: `/pages/newDrug/photoRetention/photoRetention?drugsBagType=${drugsBagType}&orderId=${orderId}`,
106
+                });
107
+              }else{
108
+                // 起点科室不支持拍照留存
109
+                this.completeOrder(responseData, queryObj);
110
+              }
111
+            }
112
+          }
113
+        }else if(config.drugsModel === 2){
114
+          // 一单多码
115
+          uni.navigateTo({
116
+            url: `/pages/newDrug/continueScanning/continueScanning?drugsBagType=${drugsBagType}&orderId=${orderId}&drugsBagId=${drugsBagId}&orderStateValue=${orderStateValue}`,
117
+          });
118
+        }
119
+      },
120
+      // 工单完成
121
+      completeOrder(responseData, queryObj){
122
+        uni.showLoading({
123
+          title: "加载中",
124
+          mask: true,
125
+        });
126
+        let postData = {
127
+          "type": queryObj.drugsBagType,
128
+          "orderId": responseData.orderId,
129
+        };
130
+        post('/transflow/checkComplete', postData).then(res => {
131
+          uni.hideLoading();
132
+          if(res.state == 200){
133
+            uni.showToast({
134
+              icon: "none",
135
+              title: responseData.orderStateValue == 4 ? "交接成功,请尽快送达科室!" : (responseData.orderStateValue == 5 ? "交接成功,完成配送!" : ""),
136
+              duration: 60000,
137
+              mask: true,
138
+              complete(){
139
+                setTimeout(() => {
140
+                  uni.hideToast();
141
+                  uni.redirectTo({
142
+                    url: `/pages/receiptpage/receiptpage`,
143
+                  });
144
+                }, 2000)
145
+              }
146
+            });
147
+          }else{
148
+            uni.showToast({
149
+              icon: "none",
150
+              title: res.msg || "接口获取数据失败!",
151
+            });
152
+          }
153
+        })
154
+      },
155
+      // 建单并签到/接单并签到-orderId
156
+      createOrBuildOrder(orderId){
157
+        uni.showModal({
158
+          title: "提示",
159
+          content: `请确认是否${orderId ? '接' : '建'}单并签到?`,
160
+          success: (result) => {
161
+            if (result.confirm) {
162
+              console.log("用户点击确定");
163
+              let postData = {
164
+                type: this.queryObj.drugsBagType,
165
+                id: +this.queryObj.drugsBagId,
166
+                orderId,
167
+              };
168
+              uni.showLoading({
169
+                title: "加载中",
170
+                mask: true,
171
+              });
172
+              post(`/transflow/createOrTakeOrder`, postData).then((ress) => {
173
+                uni.hideLoading();
174
+                if (ress.state == 200) {
175
+                  this.pageNavigateByConfig(this.config, ress.data, this.queryObj);
176
+                } else {
177
+                  uni.showToast({
178
+                    icon: "none",
179
+                    title: ress.msg || "接口获取数据失败!",
180
+                  });
181
+                }
182
+              });
183
+            } else if (result.cancel) {
184
+              console.log("用户点击取消");
185
+            }
186
+          },
187
+        });
188
+      },
189
+      //获取页面信息
190
+      getInfo(){
191
+        uni.showLoading({
192
+          title: "加载中",
193
+          mask: true,
194
+        });
195
+        
196
+        post(`/transflow/scanInfo`, {type: this.queryObj.drugsBagType, id: +this.queryObj.drugsBagId, orderStateValue: '4'}).then(res => {
197
+          uni.hideLoading();
198
+          if(res.state == 200){
199
+            if(res.data){
200
+              this.drugsBag = res.data.dto || {};
201
+              this.orderId = this.queryObj.orderId;
202
+              this.config = res.data.taskTypeConfig || {};
203
+            }
204
+          }else{
205
+            uni.showToast({
206
+              icon: "none",
207
+              title: res.msg || "接口获取数据失败!",
208
+            });
209
+          }
210
+        })
211
+      },
212
+    },
213
+    onLoad(options) {
214
+      console.log(options, "options");
215
+      this.queryObj = options;
216
+      this.getInfo();
217
+      // #ifdef APP-PLUS
218
+      webHandle("no", "app");
219
+      // #endif
220
+      // #ifdef H5
221
+      webHandle("no", "wx");
222
+      // #endif
223
+    },
224
+  };
225
+</script>
226
+<style lang="less" scoped>
227
+  .Scanning_Result {
228
+    background: #FAFBFD;
229
+    padding: 0 24rpx;
230
+    display: flex;
231
+    flex-direction: column;
232
+    height: 100vh;
233
+
234
+    .Scanning_top {
235
+      margin: 50rpx auto 64rpx;
236
+      .Scanning_top_icon {
237
+        width: 128rpx;
238
+        height: 128rpx;
239
+        border-radius: 50%;
240
+
241
+        .cubeic-ok {
242
+          font-size: 128rpx;
243
+          color: #35b34a;
244
+        }
245
+      }
246
+    }
247
+
248
+    .Scanning_cont {
249
+      flex: 1;
250
+      min-height: 0;
251
+      display: flex;
252
+      flex-direction: column;
253
+      .scrollContent{
254
+        flex: 1;
255
+        min-height: 0;
256
+      }
257
+      .column{
258
+        display: flex;
259
+        justify-content: center;
260
+        align-items: center;
261
+        font-size: 30rpx;
262
+        margin-bottom: 32rpx;
263
+        .name{
264
+          font-weight: bold;
265
+          word-break: break-all;
266
+          flex-shrink: 0;
267
+        }
268
+        .value{
269
+          word-break: break-all;
270
+        }
271
+      }
272
+    }
273
+
274
+    .foot_btn_spe {
275
+      margin: 24rpx 0;
276
+      display: flex;
277
+      flex-direction: column;
278
+      align-items: center;
279
+      gap: 24rpx;
280
+      font-weight: bold;
281
+      
282
+      .column{
283
+        width: 100%;
284
+        height: 78rpx;
285
+        display: flex;
286
+        align-items: center;
287
+        justify-content: space-between;
288
+        gap: 24rpx;
289
+        
290
+        .btn {
291
+          height: 100%;
292
+          flex: 1;
293
+          background: linear-gradient( 90deg, #6FC073 0%, #3DB197 100%);
294
+          color: #fff;
295
+          border-radius: 4rpx;
296
+          font-size: 30rpx;
297
+          display: flex;
298
+          justify-content: center;
299
+          align-items: center;
300
+        }
301
+      }
302
+    }
303
+  }
304
+</style>

+ 220 - 0
pages/newDrug/detail.vue

@@ -0,0 +1,220 @@
1
+<template>
2
+  <view class="Scanning_Result">
3
+    <view class="Scanning_top">
4
+      <view class="Scanning_top_icon">{{drugsBag.batchNo}}</view>
5
+    </view>
6
+    <view class="Scanning_top_tips">
7
+      <view class="info">申请:{{drugsBag.target ? drugsBag.target.dept : ''}}</view>
8
+      <view class="info">发药:{{drugsBag.launch ? drugsBag.launch.dept : ''}}</view>
9
+    </view>
10
+
11
+    <view class="Scanning_cont">
12
+      <view class="column head">
13
+        <view class="value1">药品名称+规格<text class="red">({{drugsList.length}})</text></view>
14
+        <view class="value2">数量</view>
15
+      </view>
16
+      <scroll-view scroll-y class="scrollContent">
17
+        <view class="column" v-for="item in drugsList" :key="item.id">
18
+          <view class="value1">{{item.drugsInfo}} {{item.model}}</view>
19
+          <view class="value2">{{item.drugsNum}}</view>
20
+        </view>
21
+      </scroll-view>
22
+    </view>
23
+
24
+    <view class="foot_btn_spe">
25
+      <view class="column">
26
+        <view class="btn" @click="goBack()">返回</view>
27
+      </view>
28
+    </view>
29
+  </view>
30
+</template>
31
+<script>
32
+  import {
33
+    get,
34
+    post,
35
+    SM,
36
+    webHandle
37
+  } from "@/http/http.js";
38
+  export default {
39
+    data() {
40
+      return {
41
+        hosId: uni.getStorageSync('userData').user.currentHospital.id,
42
+        drugsList: [], //药品列表
43
+        queryObj: {}, //路由传递过来的数据
44
+        drugsBag: {}, //药包信息
45
+        config: {}, //配置
46
+      };
47
+    },
48
+    methods: {
49
+      // 返回
50
+      goBack(){
51
+        uni.navigateBack()
52
+      },
53
+      // 根据药包id查询药品
54
+      getDrugsByDrugsBugId(drugsBagId){
55
+        post(`/transflow/extra`, {type: this.queryObj.drugsBagType, extraType: 'drugsInfo', drugsBagId}).then(res => {
56
+          uni.hideLoading();
57
+          if(res.state == 200){
58
+            if(res.data){
59
+              this.drugsList = res.data.drugsList || [];
60
+              this.drugsBag = res.data.drugsBag || {};
61
+            }
62
+          }else{
63
+            uni.showToast({
64
+              icon: "none",
65
+              title: res.msg || "接口获取数据失败!",
66
+            });
67
+          }
68
+        })
69
+      },
70
+      //获取页面信息
71
+      getInfo(){
72
+        uni.showLoading({
73
+          title: "加载中",
74
+          mask: true,
75
+        });
76
+        
77
+        if(this.queryObj.drugsBagId){
78
+          // 根据药包id查询药品
79
+          this.getDrugsByDrugsBugId(this.queryObj.drugsBagId);
80
+        }else if(this.queryObj.orderId){
81
+          // 根据工单id查询药包,此时必是一单一码,即只有一个药包码
82
+          post(`/transflow/extra`, {type: this.queryObj.drugsBagType, extraType: 'orderInfo', orderId: +this.queryObj.orderId}).then(res => {
83
+            if(res.state == 200){
84
+              if(res.data){
85
+                let drugsBagList = res.data.drugsBagList || [];
86
+                let drugsBag = drugsBagList[0] || {};
87
+                if(drugsBag.id){
88
+                  this.getDrugsByDrugsBugId(drugsBag.id);
89
+                }else{
90
+                  uni.hideLoading();
91
+                  uni.showToast({
92
+                    icon: "none",
93
+                    title: "未查询到药品!",
94
+                  });
95
+                }
96
+              }else{
97
+                uni.hideLoading();
98
+              }
99
+            }else{
100
+              uni.hideLoading();
101
+              uni.showToast({
102
+                icon: "none",
103
+                title: res.msg || "接口获取数据失败!",
104
+              });
105
+            }
106
+          })
107
+        }
108
+      },
109
+    },
110
+    onLoad(options) {
111
+      console.log(options, "options");
112
+      this.queryObj = options;
113
+      this.getInfo();
114
+      // #ifdef APP-PLUS
115
+      webHandle("no", "app");
116
+      // #endif
117
+      // #ifdef H5
118
+      webHandle("no", "wx");
119
+      // #endif
120
+    },
121
+  };
122
+</script>
123
+<style lang="less" scoped>
124
+  .Scanning_Result {
125
+    background: #FAFBFD;
126
+    padding: 0 24rpx;
127
+    display: flex;
128
+    flex-direction: column;
129
+    height: 100vh;
130
+
131
+    .Scanning_top {
132
+      margin: 32rpx auto;
133
+      .Scanning_top_icon {
134
+        font-size: 30rpx;
135
+        font-weight: bold;
136
+        .newicon{
137
+          margin: 0 32rpx;
138
+        }
139
+      }
140
+    }
141
+    .Scanning_top_tips{
142
+      display: flex;
143
+      align-items: center;
144
+      justify-content: center;
145
+      font-size: 28rpx;
146
+      margin-bottom: 32rpx;
147
+      gap: 64rpx;
148
+    }
149
+
150
+    .Scanning_cont {
151
+      flex: 1;
152
+      min-height: 0;
153
+      display: flex;
154
+      flex-direction: column;
155
+      .scrollContent{
156
+        flex: 1;
157
+        min-height: 0;
158
+      }
159
+      .column{
160
+        display: flex;
161
+        justify-content: center;
162
+        align-items: center;
163
+        font-size: 28rpx;
164
+        padding: 32rpx 24rpx;
165
+        color: #565656;
166
+        border-bottom: 1rpx solid #D9D9D9;
167
+        gap: 8rpx;
168
+        &.head{
169
+          font-size: 30rpx;
170
+          color: #000000;
171
+          border: 1rpx solid #D9D9D9;
172
+          box-shadow: 0rpx 3rpx 6rpx 1rpx rgba(0,0,0,0.16);
173
+          background: #FBFCFE;
174
+        }
175
+        .value1{
176
+          flex: 2;
177
+          text-align: left;
178
+          word-break: break-all;
179
+          flex-shrink: 0;
180
+        }
181
+        .value2,.value3{
182
+          flex: 1;
183
+          text-align: center;
184
+          word-break: break-all;
185
+          flex-shrink: 0;
186
+        }
187
+      }
188
+    }
189
+
190
+    .foot_btn_spe {
191
+      margin: 24rpx 0;
192
+      display: flex;
193
+      flex-direction: column;
194
+      align-items: center;
195
+      gap: 24rpx;
196
+      font-weight: bold;
197
+      
198
+      .column{
199
+        width: 100%;
200
+        height: 78rpx;
201
+        display: flex;
202
+        align-items: center;
203
+        justify-content: space-between;
204
+        gap: 24rpx;
205
+        
206
+        .btn {
207
+          height: 100%;
208
+          flex: 1;
209
+          background: linear-gradient( 90deg, #6FC073 0%, #3DB197 100%);
210
+          color: #fff;
211
+          border-radius: 4rpx;
212
+          font-size: 30rpx;
213
+          display: flex;
214
+          justify-content: center;
215
+          align-items: center;
216
+        }
217
+      }
218
+    }
219
+  }
220
+</style>

+ 190 - 0
pages/newDrug/list.vue

@@ -0,0 +1,190 @@
1
+<template>
2
+  <view class="Scanning_Result">
3
+    <view class="Scanning_cont">
4
+      <scroll-view scroll-y class="scrollContent">
5
+        <view class="column" v-for="item in drugsBagList" :key="item.id" @click="toDetail(item.id)">
6
+          <view class="head">
7
+            <view class="name">{{item.batchNo}}</view>
8
+            <view class="value">{{item.drugsState ? item.drugsState.name : ''}}</view>
9
+          </view>
10
+          <view class="body">
11
+            <view class="bodyColumn">
12
+              <view class="name">种类数:{{item.drugsTypeCount}}</view>
13
+              <view class="value">总数:{{item.drugsCount}}</view>
14
+            </view>
15
+            <view class="bodyColumn">
16
+              <view class="name">收取人:<template v-if="handoverStartObj && handoverStartObj.handoverUserid">{{handoverStartObj.handoverUserid.name}}</template></view>
17
+              <view class="value">收取时间:<template v-if="handoverStartObj && handoverStartObj.handoverUserid">{{handoverStartObj.operationTime}}</template></view>
18
+            </view>
19
+            <view class="bodyColumn">
20
+              <view class="name">交接人:<template v-if="handoverEndObj && handoverEndObj.handoverUserid">{{handoverEndObj.handoverUserid.name}}</template></view>
21
+              <view class="value">送达时间:<template v-if="handoverEndObj && handoverEndObj.handoverUserid">{{handoverEndObj.operationTime}}</template></view>
22
+            </view>
23
+          </view>
24
+        </view>
25
+      </scroll-view>
26
+    </view>
27
+  </view>
28
+</template>
29
+<script>
30
+  import {
31
+    get,
32
+    post,
33
+    SM,
34
+    webHandle
35
+  } from "@/http/http.js";
36
+  export default {
37
+    data() {
38
+      return {
39
+        hosId: uni.getStorageSync('userData').user.currentHospital.id,
40
+        drugsBagList: [], //药包列表
41
+        queryObj: {}, //路由传递过来的数据
42
+        workOrder: {}, //工单信息
43
+        config: {}, //配置
44
+        handoverStartObj: {}, //收取人
45
+        handoverEndObj: {}, //交接人
46
+      };
47
+    },
48
+    methods: {
49
+      // 详情
50
+      toDetail(drugsBagId){
51
+        uni.navigateTo({
52
+          url: `/pages/newDrug/detail?drugsBagType=${this.queryObj.drugsBagType}&drugsBagId=${drugsBagId}`,
53
+        });
54
+      },
55
+      //获取页面信息
56
+      getInfo(){
57
+        uni.showLoading({
58
+          title: "加载中",
59
+          mask: true,
60
+        });
61
+
62
+        post(`/transflow/extra`, {type: this.queryObj.drugsBagType, extraType: 'orderInfo', orderId: +this.queryObj.orderId}).then(res => {
63
+          uni.hideLoading();
64
+          if(res.state == 200){
65
+            if(res.data){
66
+              this.drugsBagList = res.data.drugsBagList || [];
67
+              this.workOrder = res.data.workOrder || {};
68
+              
69
+              this.handoverStartObj = this.workOrder.record.find(v => v.operation.value == 8);
70
+              this.handoverEndObj = this.workOrder.record.find(v => v.operation.value == 10);
71
+            }
72
+          }else{
73
+            uni.showToast({
74
+              icon: "none",
75
+              title: res.msg || "接口获取数据失败!",
76
+            });
77
+          }
78
+        })
79
+      },
80
+    },
81
+    onLoad(options) {
82
+      console.log(options, "options");
83
+      this.queryObj = options;
84
+      this.getInfo();
85
+      // #ifdef APP-PLUS
86
+      webHandle("no", "app");
87
+      // #endif
88
+      // #ifdef H5
89
+      webHandle("no", "wx");
90
+      // #endif
91
+    },
92
+  };
93
+</script>
94
+<style lang="less" scoped>
95
+  .Scanning_Result {
96
+    background: #F7F7F7;
97
+    display: flex;
98
+    flex-direction: column;
99
+    height: 100vh;
100
+
101
+    .Scanning_top {
102
+      margin: 32rpx auto;
103
+      .Scanning_top_icon {
104
+        font-size: 30rpx;
105
+        font-weight: bold;
106
+        .newicon{
107
+          margin: 0 32rpx;
108
+        }
109
+      }
110
+    }
111
+    .Scanning_top_tips{
112
+      display: flex;
113
+      align-items: center;
114
+      justify-content: center;
115
+      font-size: 28rpx;
116
+      margin-bottom: 32rpx;
117
+      gap: 64rpx;
118
+    }
119
+
120
+    .Scanning_cont {
121
+      flex: 1;
122
+      min-height: 0;
123
+      display: flex;
124
+      flex-direction: column;
125
+      .scrollContent{
126
+        flex: 1;
127
+        min-height: 0;
128
+        overflow: hidden;
129
+      }
130
+      .column{
131
+        background: #FFFFFF;
132
+        font-size: 24rpx;
133
+        margin-bottom: 16rpx;
134
+        .head{
135
+          padding: 24rpx;
136
+          display: flex;
137
+          justify-content: space-between;
138
+          align-content: center;
139
+          border-bottom: 1rpx solid #D2D2D2;
140
+          font-weight: bold;
141
+        }
142
+        .body{
143
+          padding: 24rpx;
144
+          .bodyColumn{
145
+            display: flex;
146
+            justify-content: space-between;
147
+            align-content: center;
148
+            margin-top: 24rpx;
149
+            &:first-of-type{
150
+              margin-top: 0;
151
+            }
152
+            .value{
153
+              text-align: left;
154
+            }
155
+          }
156
+        }
157
+      }
158
+    }
159
+
160
+    .foot_btn_spe {
161
+      margin: 24rpx 0;
162
+      display: flex;
163
+      flex-direction: column;
164
+      align-items: center;
165
+      gap: 24rpx;
166
+      font-weight: bold;
167
+
168
+      .column{
169
+        width: 100%;
170
+        height: 78rpx;
171
+        display: flex;
172
+        align-items: center;
173
+        justify-content: space-between;
174
+        gap: 24rpx;
175
+
176
+        .btn {
177
+          height: 100%;
178
+          flex: 1;
179
+          background: linear-gradient( 90deg, #6FC073 0%, #3DB197 100%);
180
+          color: #fff;
181
+          border-radius: 4rpx;
182
+          font-size: 30rpx;
183
+          display: flex;
184
+          justify-content: center;
185
+          align-items: center;
186
+        }
187
+      }
188
+    }
189
+  }
190
+</style>

+ 364 - 0
pages/newDrug/photoRetention/photoRetention.vue

@@ -0,0 +1,364 @@
1
+<template>
2
+  <view class="Scanning_Result">
3
+    <view class="Scanning_top">
4
+      <view class="Scanning_top_icon">
5
+        您需要上传图片留存,请拍摄照片上传!
6
+      </view>
7
+    </view>
8
+
9
+    <view class="Scanning_cont">
10
+      <scroll-view scroll-y class="scrollContent">
11
+        <view class="content">
12
+          <view class="dept">
13
+            {{workOrder.startDept ? workOrder.startDept.dept : ''}}<text class="newicon newicon-arrow-right-full"></text>{{workOrder.endDeptNames || ''}}
14
+          </view>
15
+          <view class="column">
16
+            <view class="name">工单单号:</view>
17
+            <view class="value">{{workOrder.gdcode}}</view>
18
+          </view>
19
+          <view class="column">
20
+            <view class="name">任务类型:</view>
21
+            <view class="value">{{workOrder.taskType ? workOrder.taskType.taskName : ''}}</view>
22
+          </view>
23
+          <view class="column">
24
+            <view class="name">签到科室:</view>
25
+            <view class="value">{{queryObj.accountDeptName}}</view>
26
+          </view>
27
+          <view class="column" v-if="queryObj.accountName">
28
+            <view class="name">交接人:</view>
29
+            <view class="value">{{queryObj.accountName}}</view>
30
+          </view>
31
+          <template v-if="config.drugsModel === 1">
32
+            <view class="column">
33
+              <view class="name">药品数:</view>
34
+              <view class="value">{{drugsBagList.length ? drugsBagList[0].drugsCount : ''}}</view>
35
+            </view>
36
+            <view class="column">
37
+              <view class="name">药品单号:</view>
38
+              <view class="value">{{drugsBagList.length ? drugsBagList[0].batchNo : ''}}</view>
39
+            </view>
40
+          </template>
41
+          <template v-if="config.drugsModel === 2">
42
+            <view class="column">
43
+              <view class="name">药单数:</view>
44
+              <view class="value">{{drugsBagList.length}}</view>
45
+            </view>
46
+          </template>
47
+          <view class="column top">
48
+            <view class="name">留存照片:</view>
49
+            <view class="value flex1">
50
+              <uni-file-picker ref="handlerImgRef" v-model="imgList" limit="1" @success="handlerImgSuccess" @fail="handlerImgFail" @select="handlerImgSelect" @delete="handlerImgDelete"></uni-file-picker>
51
+              <text class="imgTips">(支持JPG/PNG格式图片,单张大小10M以内)</text>
52
+            </view>
53
+          </view>
54
+        </view>
55
+      </scroll-view>
56
+    </view>
57
+
58
+    <view class="foot_btn_spe">
59
+      <view class="column">
60
+        <view class="btn" @click="goBack()">返回</view>
61
+        <view class="btn" @click="completeOrder()">提交</view>
62
+      </view>
63
+    </view>
64
+  </view>
65
+</template>
66
+<script>
67
+  import { uploadFile } from '@/tools/uploadFile.js'
68
+  import {
69
+    get,
70
+    post,
71
+    SM,
72
+    webHandle
73
+  } from "@/http/http.js";
74
+  export default {
75
+    data() {
76
+      return {
77
+        imgList: [],//图片列表
78
+        hosId: uni.getStorageSync('userData').user.currentHospital.id,
79
+        queryObj: {}, //路由传递过来的数据
80
+        drugsBagList: [], //药包列表
81
+        drugsList: [], //药品列表
82
+        workOrder: {}, //工单信息
83
+        config: {}, //配置
84
+      };
85
+    },
86
+    methods: {
87
+      // 返回
88
+      goBack(){
89
+       uni.navigateBack();
90
+      },
91
+      // 工单完成
92
+      completeOrder(){
93
+        uni.showLoading({
94
+          title: "加载中",
95
+          mask: true,
96
+        });
97
+        if(this.imgList.length){
98
+          // 有图片
99
+          this.$refs.handlerImgRef.upload();
100
+        }else{
101
+          // 没有图片
102
+          let handlerOrder$ = this.handlerOrder();
103
+          let requestList = [handlerOrder$];
104
+          Promise.all(requestList).then(resList => {
105
+            uni.hideLoading();
106
+            console.log(resList);
107
+            if(resList[0].state == 200){
108
+              uni.showToast({
109
+                icon: "none",
110
+                title: this.workOrder.gdState.value == 4 ? "交接成功,请尽快送达科室!" : (this.workOrder.gdState.value == 5 ? "交接成功,完成配送!" : ""),
111
+                duration: 60000,
112
+                mask: true,
113
+                complete(){
114
+                  setTimeout(() => {
115
+                    uni.hideToast();
116
+                    uni.redirectTo({
117
+                      url: `/pages/receiptpage/receiptpage`,
118
+                    });
119
+                  }, 2000)
120
+                }
121
+              });
122
+            }else{
123
+              uni.showToast({
124
+                icon: 'none',
125
+                title: resList[0].msg || '请求数据失败!'
126
+              });
127
+            }
128
+          })
129
+        }
130
+      },
131
+      // 工单完成接口
132
+      handlerOrder(){
133
+        let postData = {
134
+          "type": this.queryObj.drugsBagType,
135
+          "orderId": this.workOrder.id,
136
+          "handover": this.queryObj.accountId ? +this.queryObj.accountId : undefined,
137
+        };
138
+        return post('/transflow/checkComplete', postData);
139
+      },
140
+      // 处理图片
141
+      handlerOrderImg(imgObj){
142
+        return uploadFile(imgObj, this.workOrder.gdState.value == 4 ? 'drugsBagStartCheck' : 'drugsBagEndCheck', this.workOrder.id)
143
+      },
144
+      // 上传报修图片成功
145
+      handlerImgSuccess(e){
146
+        this.imgList.forEach(v => {
147
+          v.url = v.path;
148
+        })
149
+        console.log(this.imgList);
150
+        
151
+        let handlerOrder$ = this.handlerOrder();
152
+        let requestList = [handlerOrder$];
153
+        this.imgList.forEach(v => {
154
+          let handlerOrderImg$ = this.handlerOrderImg(v);
155
+          requestList.push(handlerOrderImg$);
156
+        })
157
+        
158
+        Promise.all(requestList).then(resList => {
159
+          uni.hideLoading();
160
+          console.log(resList);
161
+          if(resList[0].state == 200){
162
+            uni.showToast({
163
+              icon: "none",
164
+              title: this.workOrder.gdState.value == 4 ? "交接成功,请尽快送达科室!" : (this.workOrder.gdState.value == 5 ? "交接成功,完成配送!" : ""),
165
+              duration: 60000,
166
+              mask: true,
167
+              complete(){
168
+                setTimeout(() => {
169
+                  uni.hideToast();
170
+                  uni.redirectTo({
171
+                    url: `/pages/receiptpage/receiptpage`,
172
+                  });
173
+                }, 2000)
174
+              }
175
+            });
176
+          }else{
177
+            uni.showToast({
178
+              icon: 'none',
179
+              title: resList[0].msg || '请求数据失败!'
180
+            });
181
+          }
182
+        })
183
+      },
184
+  
185
+      // 上传报修图片失败
186
+      handlerImgFail(e){
187
+        this.imgList.forEach(v => {
188
+          v.url = v.path;
189
+        })
190
+        console.log(this.imgList);
191
+      },
192
+      // 选择上传图片
193
+      handlerImgSelect(e){
194
+        this.imgList = this.imgList.concat(e.tempFiles);
195
+        console.log(this.imgList);
196
+      },
197
+      // 删除上传图片
198
+      handlerImgDelete(e){
199
+        this.imgList = this.imgList.filter(v => e.tempFile.uuid != v.uuid);
200
+        console.log(this.imgList);
201
+      },
202
+      // 初始化
203
+      init(){
204
+        uni.showLoading({
205
+          title: "加载中",
206
+          mask: true,
207
+        });
208
+        
209
+        let info$ = post(`/transflow/extra`, {type: this.queryObj.drugsBagType, extraType: 'orderInfo', orderId: +this.queryObj.orderId});
210
+        let config$ = post(`/simple/data/fetchDataList/taskTypeConfig`, {
211
+            "idx": 0,
212
+            "sum": 1,
213
+            "taskTypeConfig": {
214
+                "taskTypeDTO": {
215
+                    "hosId": {
216
+                        "id": this.hosId
217
+                    },
218
+                    "ordinaryField": {
219
+                        "key": "ordinary_field",
220
+                        "value": this.queryObj.drugsBagType
221
+                    }
222
+                }
223
+            }
224
+        });
225
+        
226
+        Promise.all([info$, config$]).then(result => {
227
+          uni.hideLoading();
228
+          let [info, config] = result || [];
229
+          
230
+          if(info.state == 200){
231
+            if(info.data){
232
+              this.drugsBagList = info.data.drugsBagList || [];
233
+              if(Array.isArray(info.data.workOrder.endDepts)){
234
+                info.data.workOrder.endDeptNames = info.data.workOrder.endDepts.map(v => v.dept).join();
235
+              }
236
+              this.workOrder = info.data.workOrder || {};
237
+            }
238
+          }else{
239
+            uni.showToast({
240
+              icon: "none",
241
+              title: info.msg || "接口获取数据失败!",
242
+            });
243
+          }
244
+          
245
+          if(config.status == 200){
246
+            let list  = config.list || [];
247
+            this.config = list.length ? list[0] : {};
248
+          }else{
249
+            uni.showToast({
250
+              icon: "none",
251
+              title: config.msg || "接口获取数据失败!",
252
+            });
253
+          }
254
+        })
255
+      },
256
+    },
257
+    onLoad(options) {
258
+      console.log(options, "options");
259
+      this.queryObj = options;
260
+      this.init();
261
+      // #ifdef APP-PLUS
262
+      webHandle("no", "app");
263
+      // #endif
264
+      // #ifdef H5
265
+      webHandle("no", "wx");
266
+      // #endif
267
+    },
268
+  };
269
+</script>
270
+<style lang="less" scoped>
271
+  .Scanning_Result {
272
+    background: #FAFBFD;
273
+    padding: 0 24rpx;
274
+    display: flex;
275
+    flex-direction: column;
276
+    height: 100vh;
277
+
278
+    .Scanning_top {
279
+      margin: 32rpx auto;
280
+      .Scanning_top_icon {
281
+        font-size: 28rpx;
282
+        font-weight: bold;
283
+      }
284
+    }
285
+
286
+    .Scanning_cont {
287
+      flex: 1;
288
+      min-height: 0;
289
+      display: flex;
290
+      flex-direction: column;
291
+      .scrollContent{
292
+        flex: 1;
293
+        min-height: 0;
294
+      }
295
+      .content{
296
+        border: 1rpx solid #C5C5C5;
297
+        background: #FFFFFF;
298
+        padding: 32rpx;
299
+        .dept{
300
+          font-size: 30rpx;
301
+          font-weight: bold;
302
+          .newicon{
303
+            margin: 0 32rpx;
304
+          }
305
+        }
306
+        .column{
307
+          display: flex;
308
+          align-items: center;
309
+          font-size: 30rpx;
310
+          margin-top: 32rpx;
311
+          &.top{
312
+            align-items: flex-start;
313
+          }
314
+          .name{
315
+            font-weight: bold;
316
+            word-break: break-all;
317
+            flex-shrink: 0;
318
+          }
319
+          .value{
320
+            word-break: break-all;
321
+            &.flex1{
322
+              flex: 1;
323
+              flex-shrink: 0;
324
+            }
325
+            .imgTips{
326
+              font-size: 22rpx;
327
+              color: #8E8E8E;
328
+            }
329
+          }
330
+        }
331
+      }
332
+    }
333
+
334
+    .foot_btn_spe {
335
+      margin: 24rpx 0;
336
+      display: flex;
337
+      flex-direction: column;
338
+      align-items: center;
339
+      gap: 24rpx;
340
+      font-weight: bold;
341
+      
342
+      .column{
343
+        width: 100%;
344
+        height: 78rpx;
345
+        display: flex;
346
+        align-items: center;
347
+        justify-content: space-between;
348
+        gap: 24rpx;
349
+        
350
+        .btn {
351
+          height: 100%;
352
+          flex: 1;
353
+          background: linear-gradient( 90deg, #6FC073 0%, #3DB197 100%);
354
+          color: #fff;
355
+          border-radius: 4rpx;
356
+          font-size: 30rpx;
357
+          display: flex;
358
+          justify-content: center;
359
+          align-items: center;
360
+        }
361
+      }
362
+    }
363
+  }
364
+</style>

Разница между файлами не показана из-за своего большого размера
+ 51 - 0
pages/receipt_infopage/receipt_infopage.vue


+ 20 - 1
readme.md

@@ -5,4 +5,23 @@
5 5
 - 被服洗涤 quiltWashing
6 6
 
7 7
 # 宜昌中心医院有二级目录,打包的时候需要修改配置
8
-- manifest.json文件需要修改h5.router.base,代码已注释
8
+- manifest.json文件需要修改h5.router.base,代码已注释
9
+
10
+# iconfont下载后路径前添加前缀,如下:
11
+```js
12
+@font-face {
13
+  font-family: "newicon"; /* Project id 4304849 */
14
+  src: url('iconfont.woff2?t=1728893186075') format('woff2'),
15
+       url('iconfont.woff?t=1728893186075') format('woff'),
16
+       url('iconfont.ttf?t=1728893186075') format('truetype');
17
+}
18
+```
19
+改成
20
+```js
21
+@font-face {
22
+  font-family: "newicon"; /* Project id 4304849 */
23
+  src: url('~@/static/font/iconfont.woff2?t=1728893186075') format('woff2'),
24
+       url('~@/static/font/iconfont.woff?t=1728893186075') format('woff'),
25
+       url('~@/static/font/iconfont.ttf?t=1728893186075') format('truetype');
26
+}
27
+```

+ 66 - 0
tools/uploadFile.js

@@ -0,0 +1,66 @@
1
+import { api_uploadAttachment } from "@/http/http.js"
2
+/**
3
+ * 压缩
4
+ */
5
+const toBlob = (canvas, imgObj) => {
6
+  return new Promise((resolve,reject) => {
7
+    canvas.toBlob((fileSrc) => {
8
+      resolve(fileSrc)
9
+    }, `${imgObj.fileType}/${imgObj.extname}`, 0.3)
10
+  })
11
+}
12
+/**
13
+ * 图片加载完成
14
+ */
15
+const newImage = (img) => {
16
+  return new Promise((resolve,reject) => {
17
+    img.onload = () => {
18
+      resolve()
19
+    }
20
+  })
21
+}
22
+/**
23
+ * 上传图片
24
+ */
25
+export const uploadFile = async (imgObj, type, incidentId) => {
26
+  console.log('44444', type)
27
+  if(imgObj.extname=='mp4' || imgObj.extname=='avi' || imgObj.extname=='mpeg' || 
28
+    imgObj.extname=='wmv' || imgObj.extname=='mov' || imgObj.extname=='3gp' ||
29
+    imgObj.extname=='flv' || imgObj.extname=='mkv'){
30
+    return uni.uploadFile({
31
+      url: api_uploadAttachment(type, incidentId),
32
+      filePath: imgObj.path,
33
+      name: 'file',
34
+      formData: {
35
+        'filename': imgObj.name
36
+      }
37
+    })
38
+  }else{
39
+    const res1 = await uni.getImageInfo({src: imgObj.url});
40
+    const res = res1[1];
41
+    console.log('压缩前', res)
42
+    let canvasWidth = res.width //图片原始长宽
43
+    let canvasHeight = res.height
44
+    let img = new Image()
45
+    img.src = res.path
46
+    let canvas = document.createElement('canvas');
47
+    let ctx = canvas.getContext('2d')
48
+    canvas.width = canvasWidth
49
+    canvas.height = canvasHeight
50
+    await newImage(img)
51
+    ctx.drawImage(img, 0, 0, canvasWidth, canvasHeight)
52
+    
53
+    const fileSrc = await toBlob(canvas, imgObj)
54
+    let tp = window.URL.createObjectURL(fileSrc)
55
+    console.log('压缩后', tp);
56
+    return uni.uploadFile({
57
+      url: api_uploadAttachment(type, incidentId),
58
+      filePath: tp,
59
+      name: 'file',
60
+      formData: {
61
+        'filename': imgObj.name
62
+      }
63
+    });
64
+  }
65
+  
66
+}