Browse Source

多动作签到

seimin 1 year ago
parent
commit
b75c766fdd
5 changed files with 1059 additions and 18 deletions
  1. 1 1
      main.js
  2. 7 0
      pages.json
  3. 680 0
      pages/otherCompleteOrder/otherCompleteOrder.vue
  4. 368 16
      pages/receiptpage/receiptpage.vue
  5. 3 1
      tools/photograph.js

+ 1 - 1
main.js

@@ -4,7 +4,7 @@ import App from './App'
4 4
 import wx from 'weixin-jsapi'
5 5
 // import VConsole from 'vconsole';
6 6
 // new VConsole();
7
-console.info('v2.4.26');
7
+console.info('v2.4.27');
8 8
 Vue.prototype.wx = wx //声明扫码
9 9
 Vue.prototype.audios = [] //待播放的语音集合
10 10
 // #endif

+ 7 - 0
pages.json

@@ -385,6 +385,13 @@
385 385
         "enablePullDownRefresh": true
386 386
       }
387 387
 
388
+    }, {
389
+      "path": "pages/otherCompleteOrder/otherCompleteOrder",
390
+      "style": {
391
+        "h5": {
392
+          "titleNView": false
393
+        }
394
+      }
388 395
     }
389 396
   ],
390 397
   "globalStyle": {

+ 680 - 0
pages/otherCompleteOrder/otherCompleteOrder.vue

@@ -0,0 +1,680 @@
1
+<template>
2
+  <view class="HomeItem">
3
+    <view class="goWorkAll">
4
+      <view class="goWorkSelect combination" v-if="actionConfirmSwitch">
5
+        <view class="goWorkSelect-head">您需要完成以下动作,才可完成工单。如完成请勾选对应项!</view>
6
+        <view class="goWorkSelect-list scroll">
7
+          <checkbox-group @change="checkboxChange">
8
+            <label class="goWorkSelect-item relative" v-for="action in actions" :key="action.value">
9
+              <view>
10
+                <checkbox :value="action.value" :checked="action.checked" />
11
+              </view>
12
+              <view>{{action.name}}</view>
13
+            </label>
14
+          </checkbox-group>
15
+        </view>
16
+      </view>
17
+      <view class="goWorkSelect history" v-if="actionPhotoSwitch">
18
+        <view class="goWorkSelect-head">您需要拍摄现场照片才可完成工单!</view>
19
+        <view class="goWorkSelect-list">
20
+          <uni-file-picker :auto-upload="false" :limit="3" title="最多选择3张图片" v-model="imageValue" fileMediatype="image"
21
+            mode="grid" @select="selectFile" @delete="deleteFile"></uni-file-picker>
22
+        </view>
23
+      </view>
24
+    </view>
25
+    <view class="foot_btn_spe">
26
+      <view class="btn1" @click="photographToOther(order, 'end')">完成工单</view>
27
+      <view class="btn3" @click="goBack">返回</view>
28
+    </view>
29
+    <!-- 填写交接人账号弹窗 -->
30
+    <selectAccount v-if="hosModels.disjunctor" :title="hosModels.title" :disjunctor="hosModels.disjunctor" @ok="hosOk"
31
+      @cancel="hosCancel">
32
+    </selectAccount>
33
+  </view>
34
+</template>
35
+
36
+<script>
37
+  import {
38
+    pathUrl
39
+  } from "../../tools/photograph.js";
40
+  import selectAccount from "../../components/selectAccount/selectAccount.vue";
41
+  import {
42
+    get,
43
+    post,
44
+    webHandle
45
+  } from "../../http/http.js";
46
+  export default {
47
+    components: {
48
+      selectAccount,
49
+    },
50
+    data() {
51
+      return {
52
+        // 填写交接人账号弹窗model
53
+        hosModels: {
54
+          disjunctor: false,
55
+        },
56
+        currentCode: '', //当前拍照使用的科室二维码
57
+        currentData: {}, //当前小扫描的工单对象
58
+        orderId: undefined,
59
+        order: {},
60
+        // 拍照动作开关
61
+        actionPhotoSwitch: false,
62
+        // 确认动作开关
63
+        actionConfirmSwitch: false,
64
+        // 参数
65
+        options: {},
66
+        //动作列表
67
+        actions: [],
68
+        //图片列表
69
+        imageValue: [],
70
+      };
71
+    },
72
+    methods: {
73
+      // 完成工单
74
+      postWorkerOrder(data, accountObj){
75
+        let isKs = 0;
76
+        let ids = [];
77
+        let id = data.id;
78
+        ids.push(id);
79
+        let list = {
80
+          code: "",
81
+          ids: ids,
82
+        };
83
+        let code = "";
84
+        let type = "";
85
+        let gdStateValue = data.gdState.value; //工单状态value
86
+        let associationTypeValue = data.taskType.associationType.value; //关联类型value
87
+        
88
+        // 其他临床服务,并且工单状态是待到达||工单状态待送达
89
+        if (
90
+          (associationTypeValue == "other" &&
91
+            gdStateValue == "4") ||
92
+          gdStateValue == "5"
93
+        ) {
94
+          code = this.currentCode;
95
+          type = "orderSign/" + code;
96
+          list = {
97
+            ids
98
+          };
99
+          if (accountObj) {
100
+            list.handover = [accountObj.accountId];
101
+          }
102
+          isKs = 1;
103
+        }
104
+        post("/workerOrder/" + type, list).then((res) => {
105
+          console.log(res);
106
+          uni.hideLoading();
107
+          if (res) {
108
+            if (res.status == 200) {
109
+              if (
110
+                gdStateValue == "4" &&
111
+                associationTypeValue == "other"
112
+              ) {
113
+                uni.navigateTo({
114
+                  url: `../../pages/scanning_code/scanning_code?type=${associationTypeValue}&type1=${res.type}&id=${data.id}&deptCode=${code}&dept=${res.dept}&accountObj=${encodeURIComponent(JSON.stringify(accountObj))}`,
115
+                });
116
+              }
117
+              if (gdStateValue == "5") {
118
+                uni.navigateTo({
119
+                  url: `../../pages/scanning_code/scanning_code?type=${associationTypeValue}&type1=${res.type}&id=${data.id}&deptCode=${code}&dept=${res.dept}&accountObj=${encodeURIComponent(JSON.stringify(accountObj))}`,
120
+                });
121
+              }
122
+            } else {
123
+              uni.navigateTo({
124
+                url: `../../pages/scanning_Result/scanning_Result?type=${
125
+                associationTypeValue
126
+              }&type1=${res.type}&id=${data.id}&status=600&msg=${
127
+                res.msg
128
+              }&isKs=${isKs}&model=${encodeURIComponent(
129
+                JSON.stringify(res)
130
+              )}&qrcode=${this.currentCode}`,
131
+              });
132
+            }
133
+          } else {
134
+            uni.navigateTo({
135
+              url: `../../pages/scanning_Result/scanning_Result?id=${data.id}&status=600&msg=扫码失败!请扫描正确的二维码!&isKs=${isKs}&qrcode=${this.currentCode}`,
136
+            });
137
+          }
138
+        });
139
+      },
140
+      // 如果不是静配,药配,标本配送,标本轮巡
141
+      // 科室签到(小扫描)-拍照
142
+      nextDeptOrder_ss(data, accountObj) {
143
+        console.log(this.currentCode);
144
+        if (this.currentCode) {
145
+          // 动作
146
+          let actions = this.actions.filter(v => v.checked);
147
+          let actionRemarks = actions.map(v => v.name).toString();
148
+          uni.showLoading({
149
+            title: "加载中",
150
+            mask: true,
151
+          });
152
+          if(actionRemarks){
153
+            post("/workerOrder/addOtherRemarks", {
154
+              orderId: data.id,
155
+              actionRemarks: actionRemarks,
156
+            }).then((result1) => {
157
+              if(result1.state == 200){
158
+                this.postWorkerOrder(data, accountObj);
159
+              }else{
160
+                uni.hideLoading();
161
+                uni.showToast({
162
+                  icon: "none",
163
+                  title: "请求失败!",
164
+                });
165
+              }
166
+            });
167
+          }else{
168
+            this.postWorkerOrder(data, accountObj);
169
+          }
170
+        }
171
+      },
172
+      
173
+      // 填写交接人账号-确认
174
+      hosOk(data) {
175
+        console.log(data);
176
+        const {
177
+          accountName,
178
+          account,
179
+          accountId
180
+        } = data;
181
+        if (!accountName && !account) {
182
+          //没有填写交接人
183
+          uni.showModal({
184
+            title: '提示',
185
+            content: "请填写交接人账号!",
186
+            showCancel: false,
187
+            success: function(res) {
188
+              if (res.confirm) {
189
+                console.log('用户点击确定');
190
+              } else if (res.cancel) {
191
+                console.log('用户点击取消');
192
+              }
193
+            }
194
+          });
195
+          return;
196
+        } else if (!accountName && account || accountName && !account) {
197
+          //没有填写交接人
198
+          uni.showModal({
199
+            title: '提示',
200
+            content: "请填写正确的交接人账号!",
201
+            showCancel: false,
202
+            success: function(res) {
203
+              if (res.confirm) {
204
+                console.log('用户点击确定');
205
+              } else if (res.cancel) {
206
+                console.log('用户点击取消');
207
+              }
208
+            }
209
+          });
210
+          return;
211
+        }
212
+        this.hosModels.disjunctor = false;
213
+        let associationTypeValue = this.currentData.taskType.associationType.value;
214
+        console.log(associationTypeValue)
215
+        if(this.actionPhotoSwitch && this.actionConfirmSwitch){
216
+          this.uploadToOther(this.currentData, data, 'end');
217
+        }else if(this.actionConfirmSwitch){
218
+          // 动作
219
+          this.nextDeptOrder_ss(this.currentData, data, 'end');
220
+        }else if(this.actionPhotoSwitch){
221
+          // 拍照
222
+          this.uploadToOther(this.currentData, data, 'end');
223
+        }
224
+      },
225
+      // 填写交接人账号-取消
226
+      hosCancel() {
227
+        this.hosModels.disjunctor = false;
228
+      },
229
+      // 填写交接人账号弹窗
230
+      showSelectAccount() {
231
+        this.hosModels = {
232
+          title: '填写交接人账号',
233
+          disjunctor: true,
234
+        }
235
+      },
236
+      // 拍照-其他
237
+      photographToOther(data, type) {
238
+        this.currentData = data;
239
+        let actions = this.actions.filter(v => v.checked);
240
+        let imageValue = this.imageValue;
241
+        console.log(actions);
242
+        console.log(imageValue);
243
+        if(this.actionConfirmSwitch && this.actions.length !== actions.length){
244
+          uni.showToast({
245
+            icon: "none",
246
+          	title: '您需要完成以下动作,才可完成功工单!',
247
+          	duration: 2000
248
+          });
249
+          return;
250
+        }
251
+        if(this.actionPhotoSwitch && !imageValue.length){
252
+          uni.showToast({
253
+            icon: "none",
254
+          	title: '您需要完成拍照,才可完成功工单!',
255
+          	duration: 2000
256
+          });
257
+          return;
258
+        }
259
+        uni.showLoading({
260
+          title: "加载中",
261
+          mask: true,
262
+        });
263
+        // 其他临床服务
264
+        //检验二维码的有效性
265
+        post("/dept/scanning", {
266
+          content: type === 'start' ? data.startDept.qrcode : data.endDepts[0].qrcode,
267
+          taskTypeId: data.taskType.id,
268
+          gdState: data.gdState.id,
269
+        }).then((result) => {
270
+          uni.hideLoading();
271
+          this.currentCode = result.code;
272
+          if (result.state == 200 || result.state == 201) {
273
+            let accountObj = undefined;
274
+            if (result.account) {
275
+              accountObj = {
276
+                account: result.account,
277
+                accountName: result.name,
278
+                accountId: result.id,
279
+              };
280
+            } else {
281
+              accountObj = undefined;
282
+            }
283
+            
284
+            if(this.actionPhotoSwitch && this.actionConfirmSwitch){
285
+              this.uploadToOther(data, accountObj, type);
286
+            }else if(this.actionConfirmSwitch){
287
+              // 动作
288
+              this.nextDeptOrder_ss(data, accountObj, type);
289
+            }else if(this.actionPhotoSwitch){
290
+              // 拍照
291
+              this.uploadToOther(data, accountObj, type);
292
+            }
293
+          } else if (result.state == '0000') {
294
+            this.showSelectAccount();
295
+          } else {
296
+            uni.showToast({
297
+              icon: "none",
298
+              title: "请求失败!",
299
+            });
300
+          }
301
+        });
302
+      },
303
+      // 完成工单
304
+      uploadToOther(data, accountObj, type){
305
+        let imageValue = this.imageValue;
306
+        // 完成工单
307
+        post('/workerOrder/findRecordInfoByOrderId', {
308
+          orderId: this.orderId,
309
+          gdOperate: 22,
310
+        }).then(result => {
311
+          if (result.state == 200) {
312
+            uni.showLoading({
313
+              mask: true,
314
+              title: '加载中'
315
+            });
316
+            let n = 0;
317
+            //#ifdef H5
318
+            imageValue.forEach((v) => {
319
+              // 图片上传 start
320
+              console.log("压缩前");
321
+              let canvasWidth = v.image.width; //图片原始长宽
322
+              let canvasHeight = v.image.height;
323
+              let img = new Image();
324
+              img.src = v.path;
325
+              let canvas = document.createElement("canvas");
326
+              let ctx = canvas.getContext("2d");
327
+              canvas.width = canvasWidth;
328
+              canvas.height = canvasHeight;
329
+              ctx.drawImage(img, 0, 0, canvasWidth, canvasHeight);
330
+              canvas.toBlob(
331
+                (fileSrc) => {
332
+                  let tp = window.URL.createObjectURL(fileSrc);
333
+                  console.log("压缩后");
334
+                  n++;
335
+                  uni.uploadFile({
336
+                    url: pathUrl +
337
+                      "/common/common/uploadAttachment/orderEndPhoto/" +
338
+                      this.orderId +
339
+                      "/" + result.recordId,
340
+                    filePath: tp,
341
+                    name: "file",
342
+                    formData: {
343
+                      filename: v.name,
344
+                    },
345
+                    success: (uploadFileRes) => {
346
+                      console.log(uploadFileRes);
347
+                      if (--n === 0) {
348
+                        uni.hideLoading();
349
+                        this.nextDeptOrder_ss(data, accountObj, type);
350
+                      }
351
+                    },
352
+                    fail: (err) => {
353
+                      n--;
354
+                      console.error(err);
355
+                      uni.hideLoading();
356
+                      uni.showToast({
357
+                        icon: "none",
358
+                        title: "上传失败",
359
+                        duration: 2000,
360
+                      });
361
+                    },
362
+                  });
363
+                },
364
+                "image/jpeg",
365
+                0.3
366
+              );
367
+              // 图片上传 end
368
+            });
369
+            //#endif
370
+            //#ifdef APP-PLUS
371
+            imageValue.forEach((v) => {
372
+              // 图片上传 start
373
+              uni.compressImage({
374
+                src: v.path,
375
+                quality: 30,
376
+                success: (res) => {
377
+                  console.log('压缩前', res)
378
+                  let tp = res.tempFilePath;
379
+                  console.log("压缩后");
380
+                  n++;
381
+                  uni.uploadFile({
382
+                    url: pathUrl +
383
+                      "/common/common/uploadAttachment/orderEndPhoto/" +
384
+                      this.orderId +
385
+                      "/" + result.recordId,
386
+                    filePath: tp,
387
+                    name: "file",
388
+                    formData: {
389
+                      filename: v.name,
390
+                    },
391
+                    success: (uploadFileRes) => {
392
+                      console.log(uploadFileRes);
393
+                      if (--n === 0) {
394
+                        uni.hideLoading();
395
+                        this.nextDeptOrder_ss(data, accountObj, type);
396
+                      }
397
+                    },
398
+                    fail: (err) => {
399
+                      n--;
400
+                      console.error(err);
401
+                      uni.hideLoading();
402
+                      uni.showToast({
403
+                        icon: "none",
404
+                        title: "上传失败",
405
+                        duration: 2000,
406
+                      });
407
+                    },
408
+                  });
409
+                },
410
+                fail: function () {
411
+                  uni.hideLoading();
412
+                  uni.showToast({
413
+                    icon: 'none',
414
+                    title: '上传失败',
415
+                    duration: 2000
416
+                  });
417
+                }
418
+              })
419
+              // 图片上传 end
420
+            });
421
+            //#endif
422
+          }
423
+        })
424
+      },
425
+      // 返回
426
+      goBack() {
427
+        uni.navigateBack();
428
+      },
429
+      // 选择动作
430
+      checkboxChange: function (e) {
431
+        var items = this.actions,
432
+          values = e.detail.value;
433
+        for (var i = 0, lenI = items.length; i < lenI; ++i) {
434
+          const item = items[i]
435
+          if(values.includes(item.value)){
436
+            this.$set(item,'checked',true)
437
+          }else{
438
+            this.$set(item,'checked',false)
439
+          }
440
+        }
441
+      },
442
+      // 获取上传状态
443
+      selectFile(e) {
444
+        console.log('选择文件:', e)
445
+        this.imageValue = this.imageValue.concat(e.tempFiles);
446
+      },
447
+      
448
+      // 移除
449
+      deleteFile(e) {
450
+        console.log('移除:', e);
451
+      },
452
+    },
453
+    onLoad(options) {
454
+      console.log(options);
455
+      this.options = options;
456
+      if(options.order){
457
+        options.order = JSON.parse(options.order);
458
+        this.order = options.order;
459
+      }
460
+      if(options.orderId){
461
+        this.orderId = options.orderId;
462
+      }
463
+      if(options.taskType){
464
+        options.taskType = JSON.parse(options.taskType);
465
+        this.actionConfirmSwitch = options.taskType.carryingCourses[1].actionConfirmSwitch;
466
+        let actions = options.taskType.carryingCourses[1].actionRemarks || "";
467
+        this.actions = actions.split('$').map((v, i) => ({
468
+          value: i,
469
+          name: v,
470
+        }));
471
+        
472
+        this.actionPhotoSwitch = options.taskType.carryingCourses[1].actionPhotoSwitch;
473
+      }
474
+    },
475
+  };
476
+</script>
477
+
478
+<style lang="less" scoped>
479
+  .HomeItem {
480
+    .foot_btn_spe {
481
+      width: 100%;
482
+      position: fixed;
483
+      bottom: 30rpx;
484
+      left: 0;
485
+      line-height: 88rpx;
486
+      height: 88rpx;
487
+      text-align: center;
488
+      display: flex;
489
+      justify-content: space-between;
490
+      flex-wrap: wrap;
491
+    
492
+      &::after {
493
+        content: '';
494
+        flex: 1;
495
+      }
496
+    
497
+      view {
498
+        height: 88rpx;
499
+        width: 48%;
500
+        margin: 0 1%;
501
+        background-image: linear-gradient(to right, #72c172, #3bb197);
502
+        color: #fff;
503
+        border-radius: 8rpx;
504
+        font-size: 32rpx;
505
+        margin-top: 16rpx;
506
+      }
507
+    }
508
+
509
+    .login {
510
+      height: 420rpx;
511
+      padding: 0 32rpx;
512
+      padding-top: 164rpx;
513
+      position: relative;
514
+      z-index: 999;
515
+
516
+      .savePassword {
517
+        margin-top: 32rpx;
518
+      }
519
+
520
+      /deep/ uni-checkbox:not([disabled]) .uni-checkbox-input:hover {
521
+        border-color: #42b983 !important;
522
+      }
523
+
524
+      .login_input {
525
+        margin-top: 32rpx;
526
+        background-color: #ffffff;
527
+        height: 72rpx;
528
+        box-sizing: border-box;
529
+        padding: 16rpx;
530
+      }
531
+
532
+      .title {
533
+        font-size: 36rpx;
534
+        color: #42b983;
535
+        text-align: center;
536
+      }
537
+
538
+      .tips {
539
+        font-size: 28rpx;
540
+        color: red;
541
+        margin-top: 16rpx;
542
+      }
543
+
544
+      .page_item_btn {
545
+        height: 88rpx;
546
+        background-image: linear-gradient(to right, #72c172, #3bb197);
547
+        border-radius: 8rpx;
548
+        line-height: 88rpx;
549
+        color: #fff;
550
+        font-size: 36rpx;
551
+        font-weight: 700;
552
+        margin-top: 64rpx;
553
+        text-align: center;
554
+      }
555
+    }
556
+
557
+    //上班页面
558
+    .goWorkAll {
559
+      height: calc(100vh - 118rpx);
560
+      overflow-y: auto;
561
+      display: flex;
562
+      flex-direction: column;
563
+      justify-content: space-between;
564
+
565
+      /deep/ .uni-radio-input-checked {
566
+        background-color: #42b983 !important;
567
+        border-color: #42b983 !important;
568
+      }
569
+      /deep/ .uni-checkbox-input-checked {
570
+        color: #42b983 !important;
571
+      }
572
+
573
+      .goWorkSelect {
574
+        &.history {
575
+          height: 356rpx;
576
+          padding-bottom: 16rpx;
577
+        }
578
+
579
+        &.combination {
580
+          .goWorkSelect-head {}
581
+
582
+          .goWorkSelect-list {}
583
+        }
584
+
585
+        .goWorkSelect-head {
586
+          font-size: 28rpx;
587
+          padding: 16rpx 0;
588
+          color: #42b983;
589
+          border-bottom: 2rpx solid #42b983;
590
+          text-align: center;
591
+        }
592
+
593
+        .goWorkSelect-list {
594
+          padding: 16rpx;
595
+
596
+          .goWorkSelect-item {
597
+            height: 52rpx;
598
+            display: flex;
599
+            align-items: center;
600
+            border-bottom: 2rpx solid #e5e9ed;
601
+            padding: 16rpx;
602
+
603
+            &.relative {
604
+              position: relative;
605
+
606
+              .picker {
607
+                position: absolute;
608
+                width: 100%;
609
+                padding-left: 64rpx;
610
+              }
611
+            }
612
+
613
+            button {
614
+              font-size: 32rpx;
615
+              height: 52rpx;
616
+              line-height: 52rpx;
617
+              margin: 0;
618
+              margin-left: 16rpx;
619
+              color: rgb(7, 134, 60);
620
+              font-weight: 700;
621
+            }
622
+          }
623
+        }
624
+      }
625
+    }
626
+
627
+    .goWork {
628
+      margin: 0 auto 48rpx;
629
+      width: 240rpx;
630
+      height: 240rpx;
631
+
632
+      .goWork_btn_E {
633
+        width: 100%;
634
+        height: 100%;
635
+        background: #bee1a7;
636
+        border-radius: 30%;
637
+
638
+        .goWork_btn_W {
639
+          width: 75%;
640
+          height: 75%;
641
+          background-image: linear-gradient(to right, #72c172, #3bb197);
642
+          border-radius: 30%;
643
+          margin: 0 auto;
644
+          position: relative;
645
+          top: 12.5%;
646
+          line-height: 180rpx;
647
+          color: #fff;
648
+          font-size: 36rpx;
649
+          text-align: center;
650
+        }
651
+      }
652
+    }
653
+
654
+    .goWork_text {
655
+      width: 100%;
656
+
657
+      view {
658
+        text-align: center;
659
+      }
660
+
661
+      .goWork_text-p {
662
+        font-size: 36rpx;
663
+        margin-bottom: 48rpx;
664
+      }
665
+    }
666
+
667
+    .botImg {
668
+      height: 600rpx;
669
+      width: 100%;
670
+      position: fixed;
671
+      bottom: 0;
672
+
673
+      .img {
674
+        height: 100%;
675
+        background: url("../../static/img/BG.png") no-repeat center center;
676
+        background-size: 100% 100%;
677
+      }
678
+    }
679
+  }
680
+</style>

+ 368 - 16
pages/receiptpage/receiptpage.vue

@@ -240,6 +240,10 @@
240 240
               <!-- 待送达 -->
241 241
               <text class="red" v-if="item.gdState.value == 5">请扫描终点科室码,并扫描患者腕带</text>
242 242
             </view>
243
+            <view v-else-if="item.taskType.associationType.value == 'other'">
244
+              <!-- 待到达 -->
245
+              <text class="red" v-if="item.gdState.value == 4">可通过扫描科室码或者拍照进行签到</text>
246
+            </view>
243 247
             <!-- 如果不是患者陪检或患者转运或其他,万能交接 -->
244 248
             <view class="page_item_btn" v-if="
245 249
                 selectedLabelSlots == '执行中' &&
@@ -259,22 +263,17 @@
259 263
                 item.taskType.associationType.value != 'specimenPlan' &&
260 264
                 item.taskType.associationType.value != 'ordinary'
261 265
               ">
262
-              <view class="page_item_btn" :style="{
263
-                  width:
264
-                    item.taskType.associationType.value != 'other' &&
265
-                    item.gdState.value == 4
266
-                      ? '50%'
267
-                      : '100%',
268
-                }" hover-class="seimin-btn-hover">
266
+              <view v-if="!(item.taskType.associationType.value == 'other' && item.gdState.value == 5 && item.taskType.carryingCourses[1].actionsSwitch)" class="page_item_btn" hover-class="seimin-btn-hover">
269 267
                 <smallScreen :sData="item" :sType="1">扫码</smallScreen>
270 268
               </view>
271
-              <view v-if="
272
-                  item.taskType.associationType.value != 'other' &&
273
-                  item.gdState.value == 4
274
-                " class="page_item_btn" @click="photograph(item)" hover-class="seimin-btn-hover">拍照</view>
269
+              <!-- 其他临床服务-完成工单-待送达 -->
270
+              <view v-if="item.taskType.associationType.value == 'other' && item.gdState.value == 5 && item.taskType.carryingCourses[1].actionsSwitch" class="page_item_btn" @click="otherCompleteOrder(item)" hover-class="seimin-btn-hover">完成工单</view>
271
+              <!-- 其他临床服务-拍照 -->
272
+              <view v-if="item.taskType.associationType.value == 'other' && item.gdState.value == 4 && item.taskType.carryingCourses[0].photoSwitch" class="page_item_btn" @click="photographToOther(item, 'start')" hover-class="seimin-btn-hover">拍照</view>
273
+              
274
+              <view v-if="item.taskType.associationType.value != 'other' && item.gdState.value == 4" class="page_item_btn" @click="photograph(item)" hover-class="seimin-btn-hover">拍照</view>
275 275
             </view>
276
-            <view class="page_item_btn" v-if="selectedLabelSlots == '待接单'" @click="showAlerts(item)"
277
-              hover-class="seimin-btn-hover">接单</view>
276
+            <view class="page_item_btn" v-if="selectedLabelSlots == '待接单'" @click="showAlerts(item)" hover-class="seimin-btn-hover">接单</view>
278 277
           </view>
279 278
           <view class="L-l"></view>
280 279
           <view class="R-l"></view>
@@ -298,9 +297,14 @@
298 297
     <handViewDrugsBag v-if="drugbagModels.disjunctor" :title="drugbagModels.title"
299 298
       :disjunctor="drugbagModels.disjunctor" @ok="drugbagOk" @cancel="drugbagCancel">
300 299
     </handViewDrugsBag>
300
+    <!-- 填写交接人账号弹窗 -->
301
+    <selectAccount v-if="hosModels.disjunctor" :title="hosModels.title" :disjunctor="hosModels.disjunctor" @ok="hosOk"
302
+      @cancel="hosCancel">
303
+    </selectAccount>
301 304
   </view>
302 305
 </template>
303 306
 <script>
307
+  import selectAccount from "../../components/selectAccount/selectAccount.vue";
304 308
   import smallScreen from "../../components/smallScreen/smallScreen.vue";
305 309
   import showModel from "../../components/showModel/showModel.vue";
306 310
   import bigScreen from "../../components/bigScreen/bigScreen.vue";
@@ -314,11 +318,18 @@
314 318
     webHandle
315 319
   } from "../../http/http.js";
316 320
   import {
317
-    photographTool
321
+    photographTool,
322
+    pathUrl
318 323
   } from "../../tools/photograph.js";
319 324
   export default {
320 325
     data() {
321 326
       return {
327
+        // 填写交接人账号弹窗model
328
+        hosModels: {
329
+          disjunctor: false,
330
+        },
331
+        currentCode: '', //当前拍照使用的科室二维码
332
+        currentData: {}, //当前小扫描的工单对象
322 333
         // 弹窗model
323 334
         showMyQrcodeModel: {
324 335
           disjunctor: false,
@@ -428,8 +439,16 @@
428 439
       uniFab,
429 440
       showModel,
430 441
       bigScreen,
442
+      selectAccount,
431 443
     },
432 444
     methods: {
445
+      // 前往其他临床服务完成工单确认页面
446
+      otherCompleteOrder(data){
447
+        console.log(data);
448
+        uni.navigateTo({
449
+          url: `../otherCompleteOrder/otherCompleteOrder?orderId=${data.id}&taskType=${data.taskType ? encodeURIComponent(JSON.stringify(data.taskType)) : ''}&order=${data ? encodeURIComponent(JSON.stringify(data)) : ''}`,
450
+        });
451
+      },
433 452
       // 手动查询药品-确认
434 453
       drugbagOk(data) {
435 454
         console.log(data);
@@ -582,6 +601,337 @@
582 601
       photograph(data) {
583 602
         photographTool(data);
584 603
       },
604
+      // 如果不是静配,药配,标本配送,标本轮巡
605
+      // 科室签到(小扫描)-拍照
606
+      nextDeptOrder_ss(data, accountObj) {
607
+        console.log(this.currentCode);
608
+        let isKs = 0;
609
+        let ids = [];
610
+        let id = data.id;
611
+        ids.push(id);
612
+        let list = {
613
+          code: "",
614
+          ids: ids,
615
+        };
616
+        let code = "";
617
+        let type = "";
618
+        if (this.currentCode) {
619
+          let gdStateValue = data.gdState.value; //工单状态value
620
+          let associationTypeValue = data.taskType.associationType.value; //关联类型value
621
+          
622
+          // 其他临床服务,并且工单状态是待到达||工单状态待送达
623
+          if (
624
+            (associationTypeValue == "other" &&
625
+              gdStateValue == "4") ||
626
+            gdStateValue == "5"
627
+          ) {
628
+            code = this.currentCode;
629
+            type = "orderSign/" + code;
630
+            list = {
631
+              ids
632
+            };
633
+            if (accountObj) {
634
+              list.handover = [accountObj.accountId];
635
+            }
636
+            isKs = 1;
637
+          }
638
+          uni.showLoading({
639
+            title: "加载中",
640
+            mask: true,
641
+          });
642
+          post("/workerOrder/" + type, list).then((res) => {
643
+            uni.hideLoading();
644
+            if (res) {
645
+              if (res.status == 200) {
646
+                if (
647
+                  gdStateValue == "4" &&
648
+                  associationTypeValue == "other"
649
+                ) {
650
+                  uni.navigateTo({
651
+                    url: `../../pages/scanning_code/scanning_code?type=${associationTypeValue}&type1=${res.type}&id=${data.id}&deptCode=${code}&dept=${res.dept}&accountObj=${encodeURIComponent(JSON.stringify(accountObj))}`,
652
+                  });
653
+                }
654
+                if (gdStateValue == "5") {
655
+                  uni.navigateTo({
656
+                    url: `../../pages/scanning_code/scanning_code?type=${associationTypeValue}&type1=${res.type}&id=${data.id}&deptCode=${code}&dept=${res.dept}&accountObj=${encodeURIComponent(JSON.stringify(accountObj))}`,
657
+                  });
658
+                }
659
+              } else {
660
+                uni.navigateTo({
661
+                  url: `../../pages/scanning_Result/scanning_Result?type=${
662
+                  associationTypeValue
663
+                }&type1=${res.type}&id=${data.id}&status=600&msg=${
664
+                  res.msg
665
+                }&isKs=${isKs}&model=${encodeURIComponent(
666
+                  JSON.stringify(res)
667
+                )}&qrcode=${this.currentCode}`,
668
+                });
669
+              }
670
+            } else {
671
+              uni.navigateTo({
672
+                url: `../../pages/scanning_Result/scanning_Result?id=${data.id}&status=600&msg=扫码失败!请扫描正确的二维码!&isKs=${isKs}&qrcode=${this.currentCode}`,
673
+              });
674
+            }
675
+          });
676
+        }
677
+      },
678
+
679
+      // 填写交接人账号-确认
680
+      hosOk(data) {
681
+        console.log(data);
682
+        const {
683
+          accountName,
684
+          account,
685
+          accountId
686
+        } = data;
687
+        if (!accountName && !account) {
688
+          //没有填写交接人
689
+          uni.showModal({
690
+            title: '提示',
691
+            content: "请填写交接人账号!",
692
+            showCancel: false,
693
+            success: function(res) {
694
+              if (res.confirm) {
695
+                console.log('用户点击确定');
696
+              } else if (res.cancel) {
697
+                console.log('用户点击取消');
698
+              }
699
+            }
700
+          });
701
+          return;
702
+        } else if (!accountName && account || accountName && !account) {
703
+          //没有填写交接人
704
+          uni.showModal({
705
+            title: '提示',
706
+            content: "请填写正确的交接人账号!",
707
+            showCancel: false,
708
+            success: function(res) {
709
+              if (res.confirm) {
710
+                console.log('用户点击确定');
711
+              } else if (res.cancel) {
712
+                console.log('用户点击取消');
713
+              }
714
+            }
715
+          });
716
+          return;
717
+        }
718
+        this.hosModels.disjunctor = false;
719
+        let associationTypeValue = this.currentData.taskType.associationType.value;
720
+        console.log(associationTypeValue)
721
+        this.uploadToOther(this.currentData, data, 'start');
722
+      },
723
+      // 填写交接人账号-取消
724
+      hosCancel() {
725
+        this.hosModels.disjunctor = false;
726
+      },
727
+      // 填写交接人账号弹窗
728
+      showSelectAccount() {
729
+        this.hosModels = {
730
+          title: '填写交接人账号',
731
+          disjunctor: true,
732
+        }
733
+      },
734
+      // 拍照-上传
735
+      uploadToOther(data, accountObj, type){
736
+        // 其他临床服务拍照签到
737
+        console.log(data, 1111);
738
+        let id_seimin;
739
+        let asTypeValue_seimin;
740
+        let gdStateValue_seimin;
741
+        if (data.status != 200 && data.status !== undefined) {
742
+          id_seimin = data.id;
743
+          asTypeValue_seimin = data.type;
744
+          gdStateValue_seimin = JSON.parse(data.model).gdstate2; //type改成gdstate
745
+        } else {
746
+          id_seimin = data.id;
747
+          asTypeValue_seimin = data.taskType.associationType.value;
748
+          gdStateValue_seimin = data.gdState.value;
749
+        }
750
+        //#ifdef H5
751
+        uni.chooseImage({
752
+          sourceType: ['camera'],
753
+          success: (chooseImageRes) => {
754
+            console.log(chooseImageRes, pathUrl)
755
+            const tempFilePaths = chooseImageRes.tempFilePaths;
756
+            const tempFiles = chooseImageRes.tempFiles;
757
+            let tp = tempFilePaths[0];
758
+            uni.showLoading({
759
+              mask: true,
760
+              title: '加载中'
761
+            });
762
+            post('/workerOrder/findRecordInfoByOrderId', {
763
+              orderId: id_seimin,
764
+              gdOperate: 21,
765
+            }).then(result => {
766
+              console.log(result)
767
+              if (result.state == 200) {
768
+                uni.getImageInfo({
769
+                  src: tp,
770
+                  success: (res) => {
771
+                    console.log('压缩前', res)
772
+                    let canvasWidth = res.width //图片原始长宽
773
+                    let canvasHeight = res.height
774
+                    let img = new Image()
775
+                    img.src = res.path
776
+                    let canvas = document.createElement('canvas');
777
+                    let ctx = canvas.getContext('2d')
778
+                    canvas.width = canvasWidth
779
+                    canvas.height = canvasHeight
780
+                    ctx.drawImage(img, 0, 0, canvasWidth, canvasHeight)
781
+                    canvas.toBlob((fileSrc) => {
782
+                      tp = window.URL.createObjectURL(fileSrc)
783
+                      console.log('压缩后', tp);
784
+                      uni.uploadFile({
785
+                        url: pathUrl + '/common/common/uploadAttachment/'+(type == 'start' ? 'orderStartPhoto' : 'orderEndPhoto')+'/' + id_seimin + '/' + result.recordId,
786
+                        filePath: tp,
787
+                        name: 'file',
788
+                        formData: {
789
+                          'filename': tempFiles[0].name ? tempFiles[0].name.split('.')[0] + '.jpg' : tempFiles[
790
+                            0].path.split(
791
+                              /[\\/]/).reverse()[0].split('.')[0] + '.jpg'
792
+                        },
793
+                        success: (uploadFileRes) => {
794
+                          console.log(uploadFileRes, 10086, asTypeValue_seimin);
795
+                          this.nextDeptOrder_ss(data, accountObj, type);
796
+                        },
797
+                        fail: err => {
798
+                          console.error(err);
799
+                          uni.hideLoading();
800
+                          uni.showToast({
801
+                            icon: 'none',
802
+                            title: '上传失败',
803
+                            duration: 2000
804
+                          });
805
+                        }
806
+                      });
807
+                    }, 'image/jpeg', 0.3)
808
+                  },
809
+                  fail: function () {
810
+                    uni.hideLoading();
811
+                    uni.showToast({
812
+                      icon: 'none',
813
+                      title: '上传失败',
814
+                      duration: 2000
815
+                    });
816
+                  }
817
+                })
818
+              } else {
819
+                uni.hideLoading();
820
+                uni.showToast({
821
+                  icon: "none",
822
+                  title: "请求失败!",
823
+                });
824
+              }
825
+            })
826
+          }
827
+        });
828
+        //#endif
829
+        //#ifdef APP-PLUS
830
+        uni.chooseImage({
831
+          sourceType: ['camera'],
832
+          success: (chooseImageRes) => {
833
+            console.log(chooseImageRes, pathUrl)
834
+            const tempFilePaths = chooseImageRes.tempFilePaths;
835
+            const tempFiles = chooseImageRes.tempFiles;
836
+            let tp = tempFilePaths[0];
837
+            uni.showLoading({
838
+              mask: true,
839
+              title: '加载中'
840
+            });
841
+            post('/workerOrder/findRecordInfoByOrderId', {
842
+              orderId: id_seimin,
843
+              gdOperate: 21,
844
+            }).then(result => {
845
+              console.log(result)
846
+              if (result.state == 200) {
847
+                uni.compressImage({
848
+                  src: tp,
849
+                  quality: 30,
850
+                  success: (res) => {
851
+                    console.log('压缩前', res)
852
+                    tp = res.tempFilePath;
853
+                    console.log('压缩后', tp);
854
+                    uni.uploadFile({
855
+                      url: pathUrl + '/common/common/uploadAttachment/'+(type == 'start' ? 'orderStartPhoto' : 'orderEndPhoto')+'/' + id_seimin + '/' + result.recordId,
856
+                      filePath: tp,
857
+                      name: 'file',
858
+                      formData: {
859
+                        'filename': tempFiles[0].name ? tempFiles[0].name.split('.')[0] + '.jpg' : tempFiles[
860
+                          0].path.split(
861
+                            /[\\/]/).reverse()[0].split('.')[0] + '.jpg'
862
+                      },
863
+                      success: (uploadFileRes) => {
864
+                        console.log(uploadFileRes, 10086, asTypeValue_seimin);
865
+                        this.nextDeptOrder_ss(data, accountObj, type);
866
+                      },
867
+                      fail: err => {
868
+                        console.error(err);
869
+                        uni.hideLoading();
870
+                        uni.showToast({
871
+                          icon: 'none',
872
+                          title: '上传失败',
873
+                          duration: 2000
874
+                        });
875
+                      }
876
+                    });
877
+                  },
878
+                  fail: function () {
879
+                    uni.hideLoading();
880
+                    uni.showToast({
881
+                      icon: 'none',
882
+                      title: '上传失败',
883
+                      duration: 2000
884
+                    });
885
+                  }
886
+                })
887
+              } else {
888
+                uni.hideLoading();
889
+                uni.showToast({
890
+                  icon: "none",
891
+                  title: "请求失败!",
892
+                });
893
+              }
894
+            })
895
+          }
896
+        });
897
+        //#endif
898
+      },
899
+      // 拍照-其他
900
+      photographToOther(data, type) {
901
+        this.currentData = data;
902
+        uni.showLoading({
903
+          title: "加载中",
904
+          mask: true,
905
+        });
906
+        // 其他临床服务
907
+        //检验二维码的有效性
908
+        post("/dept/scanning", {
909
+          content: type === 'start' ? data.startDept.qrcode : data.endDepts[0].qrcode,
910
+          taskTypeId: data.taskType.id,
911
+          gdState: data.gdState.id,
912
+        }).then((result) => {
913
+          uni.hideLoading();
914
+          this.currentCode = result.code;
915
+          if (result.state == 200 || result.state == 201) {
916
+            if (result.account) {
917
+              this.uploadToOther(data, {
918
+                account: result.account,
919
+                accountName: result.name,
920
+                accountId: result.id,
921
+              }, type);
922
+            } else {
923
+              this.uploadToOther(data, undefined, type);
924
+            }
925
+          } else if (result.state == '0000') {
926
+            this.showSelectAccount();
927
+          } else {
928
+            uni.showToast({
929
+              icon: "none",
930
+              title: "请求失败!",
931
+            });
932
+          }
933
+        });
934
+      },
585 935
       // 悬浮按钮点击事件
586 936
       trigger(e) {
587 937
         if (e.item.text === "我的任务") {
@@ -1106,7 +1456,7 @@
1106 1456
     }
1107 1457
 
1108 1458
     .page_items {
1109
-      height: calc(100vh - 184rpx);
1459
+      height: calc(100vh - 214rpx);
1110 1460
       padding: 0 20rpx;
1111 1461
       // padding-bottom: 88rpx;
1112 1462
       padding-top: 96rpx;
@@ -1375,7 +1725,9 @@
1375 1725
 
1376 1726
               .page_item_btn {
1377 1727
                 height: 88rpx;
1378
-                width: 49%;
1728
+                flex: 1;
1729
+                margin-left: 1%;
1730
+                margin-right: 1%;
1379 1731
                 background-image: linear-gradient(to right, #72c172, #3bb197);
1380 1732
                 border-radius: 8rpx;
1381 1733
                 line-height: 88rpx;

+ 3 - 1
tools/photograph.js

@@ -2,7 +2,7 @@ import {
2 2
   get,
3 3
   post
4 4
 } from "./../http/http.js";
5
-const pathUrl = uni.getStorageSync('path');
5
+export const pathUrl = uni.getStorageSync('path');
6 6
 export function photographTool(data, deptObj) {
7 7
   console.log(data, deptObj, 1111);
8 8
   let id_seimin;
@@ -198,6 +198,7 @@ export function photographTool(data, deptObj) {
198 198
             }
199 199
           })
200 200
         } else {
201
+          uni.hideLoading();
201 202
           uni.showToast({
202 203
             icon: "none",
203 204
             title: "请求失败!",
@@ -362,6 +363,7 @@ export function photographTool(data, deptObj) {
362 363
             }
363 364
           });
364 365
         } else {
366
+          uni.hideLoading();
365 367
           uni.showToast({
366 368
             icon: "none",
367 369
             title: "请求失败!",