Browse Source

微信快捷接单

seimin 1 year ago
parent
commit
fb4a8e55c0

+ 36 - 1
components/bigScreen/bigScreen.vue

@@ -193,7 +193,8 @@
193 193
                   code: result.code, //二维码
194 194
                 };
195 195
                 //微信—大扫描(科室码,患者码,标本码,快捷建单码,药包码)
196
-                post("/workerOrder/scanCode", { code: qrcodePrefix + result.code })
196
+                let code = result.code.includes(qrcodePrefix) ? result.code : qrcodePrefix + result.code;
197
+                post("/workerOrder/scanCode", { code })
197 198
                   .then((res) => {
198 199
                     uni.hideLoading();
199 200
                     if (res.status == 200) {
@@ -293,6 +294,40 @@
293 294
                             url: `/pages/scanning_blood/scanning_blood?qrcode=${data.code}`,
294 295
                           });
295 296
                         }
297
+                      } else if (res.type == 'receiveOrder') {
298
+                        //扫快捷接单
299
+                        uni.showModal({
300
+                          title: "提示",
301
+                          content: `您本次接单包括${res.names.join('、')},一共含有${res.data.length}个工单,是否确认接单?`,
302
+                          success: function(result) {
303
+                            if (result.confirm) {
304
+                              uni.showLoading({
305
+                                title: "加载中",
306
+                                mask: true,
307
+                              });
308
+                              post("/workerOrder/receiveOrders", {ids: res.data.toString()}).then((res) => {
309
+                                uni.hideLoading();
310
+                                if (res.status == 200) {
311
+                                  uni.showToast({
312
+                                    title: "操作成功",
313
+                                    success() {
314
+                                      uni.redirectTo({
315
+                                        url: "../receiptpage/receiptpage",
316
+                                      });
317
+                                    },
318
+                                  });
319
+                                } else {
320
+                                  uni.showToast({
321
+                                    icon: "none",
322
+                                    title: "请求失败!",
323
+                                  });
324
+                                }
325
+                              });
326
+                            } else if (result.cancel) {
327
+                              console.log("用户点击取消");
328
+                            }
329
+                          },
330
+                        });
296 331
                       }
297 332
                     } else {
298 333
                       uni.navigateTo({

+ 1 - 1
main.js

@@ -7,7 +7,7 @@ import './mixins/mixin'
7 7
 // new VConsole();
8 8
 // import eruda from 'eruda';
9 9
 // eruda.init();
10
-console.info('v2.4.35');
10
+console.info('v2.4.36');
11 11
 Vue.prototype.wx = wx //声明扫码
12 12
 Vue.prototype.audios = [] //待播放的语音集合
13 13
 // #endif

+ 8 - 0
pages.json

@@ -428,6 +428,14 @@
428 428
         }
429 429
       }
430 430
 
431
+    }, {
432
+      "path": "pages/quickOrderAcceptanceWx/quickOrderAcceptanceWx",
433
+      "style": {
434
+        "h5": {
435
+          "titleNView": false
436
+        }
437
+      }
438
+
431 439
     }
432 440
   ],
433 441
   "globalStyle": {

+ 2 - 1
pages/formManagementBuilding/formManagementBuilding.vue

@@ -66,13 +66,14 @@
66 66
         });
67 67
         // #endif
68 68
         uni.navigateTo({
69
-          url: `../formManagementDept/formManagementDept?id=${this.options.id}&buildingId=${id}`,
69
+          url: `../formManagementDept/formManagementDept?id=${this.options.id}&taskTypeId=${this.options.taskTypeId}&buildingId=${id}`,
70 70
         });
71 71
       },
72 72
       //表单列表获取
73 73
       getList() {
74 74
         let data = {
75 75
           reserveFormId: this.options.id,
76
+          taskTypeId: this.options.taskTypeId,
76 77
         };
77 78
         uni.showLoading({
78 79
           title: "加载中",

+ 1 - 11
pages/formManagementDept/formManagementDept.vue

@@ -60,21 +60,11 @@
60 60
       goBack() {
61 61
         uni.navigateBack();
62 62
       },
63
-      // 进入详情页
64
-      itemInfo(id) {
65
-        // #ifdef H5
66
-        document.body.removeEventListener("touchmove", this.stop, {
67
-          passive: false,
68
-        });
69
-        // #endif
70
-        uni.navigateTo({
71
-          url: `../formManagementDept/formManagementDept?id=${this.options.id}`,
72
-        });
73
-      },
74 63
       //表单列表获取
75 64
       getList() {
76 65
         let data = {
77 66
           reserveFormId: this.options.id,
67
+          taskTypeId: this.options.taskTypeId,
78 68
         };
79 69
         uni.showLoading({
80 70
           title: "加载中",

+ 3 - 3
pages/formManagementWechat/formManagementWechat.vue

@@ -26,7 +26,7 @@
26 26
                 <view> 包含类型:{{ item.taskTypeDTO ? item.taskTypeDTO.taskName : '无' }} </view>
27 27
               </view>
28 28
             </view>
29
-            <view class="page_item_btn" hover-class="seimin-btn-hover" @click="itemInfo(item.id)">详情</view>
29
+            <view class="page_item_btn" hover-class="seimin-btn-hover" @click="itemInfo(item.id, item.taskType)">详情</view>
30 30
           </view>
31 31
           <view class="L-l"></view>
32 32
           <view class="R-l"></view>
@@ -60,14 +60,14 @@
60 60
         uni.navigateBack();
61 61
       },
62 62
       // 进入详情页
63
-      itemInfo(id) {
63
+      itemInfo(id, taskTypeId) {
64 64
         // #ifdef H5
65 65
         document.body.removeEventListener("touchmove", this.stop, {
66 66
           passive: false,
67 67
         });
68 68
         // #endif
69 69
         uni.navigateTo({
70
-          url: `../formManagementBuilding/formManagementBuilding?id=${id}`,
70
+          url: `../formManagementBuilding/formManagementBuilding?id=${id}&taskTypeId=${taskTypeId}`,
71 71
         });
72 72
       },
73 73
       //表单列表获取

+ 361 - 0
pages/quickOrderAcceptanceWx/quickOrderAcceptanceWx.vue

@@ -0,0 +1,361 @@
1
+<template>
2
+  <view class="formManagementWechat">
3
+    <view class="page_tab">
4
+      <view class="page_tab_bar active">
5
+        <view class="tab_dept">快捷接单</view>
6
+      </view>
7
+    </view>
8
+    <view v-if="zxzData.length == 0" class="zwsj">
9
+      <image class="zwsj-img" mode="widthFix" src="../../static/img/zanwushuju.png"></image>
10
+      <view class="zwsj-txt">暂无数据</view>
11
+    </view>
12
+    <view v-if="zxzData.length" class="page_items">
13
+      <scroll-view class="page_items_scroll" scroll-y>
14
+        <checkbox-group @change="checkboxChange">
15
+          <label class="goWorkSelect-item relative" v-for="item in zxzData" :key="item.id">
16
+            <checkbox :value="item.id" :checked="item.checked" />
17
+            <view>{{ item.name }}</view>
18
+          </label>
19
+        </checkbox-group>
20
+      </scroll-view>
21
+    </view>
22
+    <!-- 底部 -->
23
+    <view class="foot_btn2 footerPadding">
24
+      <view class="btn2" @click="confirm">确认接单</view>
25
+      <view class="btn2" @click="goBack">返回</view>
26
+    </view>
27
+  </view>
28
+</template>
29
+<script>
30
+  import {
31
+    get,
32
+    post,
33
+    webHandle
34
+  } from "../../http/http.js";
35
+  export default {
36
+    data() {
37
+      return {
38
+        hosId: uni.getStorageSync("userData").user.currentHospital.id,
39
+        options: {},
40
+        //列表数据
41
+        zxzData: [],
42
+      };
43
+    },
44
+    methods: {
45
+      // 确认接单
46
+      confirm(){
47
+        let ids = this.zxzData.filter(v => v.checked).map(v => v.id).toString();
48
+        if(!ids){
49
+          uni.showToast({
50
+            icon: "none",
51
+            title: "请至少选择一项!",
52
+          });
53
+          return;
54
+        }
55
+        uni.showLoading({
56
+          title: "加载中",
57
+          mask: true,
58
+        });
59
+        post("/workerOrder/getReceiveOrderIds", {ids}).then((res) => {
60
+          uni.hideLoading();
61
+          if (res.status == 200) {
62
+            uni.showModal({
63
+              title: "提示",
64
+              content: `您本次接单包括${res.names.join('、')},一共含有${res.data.length}个工单,是否确认接单?`,
65
+              success: function(result) {
66
+                if (result.confirm) {
67
+                  uni.showLoading({
68
+                    title: "加载中",
69
+                    mask: true,
70
+                  });
71
+                  post("/workerOrder/receiveOrders", {ids: res.data.toString()}).then((res) => {
72
+                    uni.hideLoading();
73
+                    if (res.status == 200) {
74
+                      uni.showToast({
75
+                        title: "操作成功",
76
+                        success() {
77
+                          uni.navigateTo({
78
+                            url: "../receiptpage/receiptpage",
79
+                          });
80
+                        },
81
+                      });
82
+                    } else {
83
+                      uni.showToast({
84
+                        icon: "none",
85
+                        title: "请求失败!",
86
+                      });
87
+                    }
88
+                  });
89
+                } else if (result.cancel) {
90
+                  console.log("用户点击取消");
91
+                }
92
+              },
93
+            });
94
+          } else {
95
+            uni.showToast({
96
+              icon: "none",
97
+              title: "请求失败!",
98
+            });
99
+          }
100
+        });
101
+      },
102
+      // 选择多选框
103
+      checkboxChange: function(e) {
104
+        let items = this.zxzData,
105
+          values = e.detail.value;
106
+        for (let i = 0, lenI = items.length; i < lenI; ++i) {
107
+          const item = items[i]
108
+          if (values.includes(item.id)) {
109
+            this.$set(item, 'checked', true)
110
+          } else {
111
+            this.$set(item, 'checked', false)
112
+          }
113
+        }
114
+      },
115
+      // 返回
116
+      goBack() {
117
+        uni.navigateBack();
118
+      },
119
+      //获取快捷接单类型
120
+      getReceiveRuleType() {
121
+        let postData = {
122
+            "type": "list",
123
+            "key": "receiveRuleType"
124
+        };
125
+        uni.showLoading({
126
+          title: "加载中",
127
+          mask: true,
128
+        });
129
+        // 请求列表数据
130
+        post("/common/common/getDictionary", postData).then((res) => {
131
+            let type = res.find(v => v.value == 1);
132
+            this.getList(type);
133
+        });
134
+      },
135
+      //表单列表获取
136
+      getList(type) {
137
+        let postData = {
138
+          "idx": 0,
139
+          "sum": 9999,
140
+          "receiveOrderRule": {
141
+            "hosId": this.hosId,
142
+            type,
143
+          }
144
+        };
145
+        uni.showLoading({
146
+          title: "加载中",
147
+          mask: true,
148
+        });
149
+        // 请求列表数据
150
+        post("/simple/data/fetchDataList/receiveOrderRule", postData).then((res) => {
151
+          uni.hideLoading();
152
+          if (res.status == 200) {
153
+            res.list = res.list || [];
154
+            this.zxzData = res.list.map(v => ({
155
+              id: v.id,
156
+              name: v.title,
157
+              checked: false,
158
+            }))
159
+          } else {
160
+            this.zxzData = [];
161
+            uni.showToast({
162
+              icon: "none",
163
+              title: "请求失败!",
164
+            });
165
+          }
166
+        });
167
+      },
168
+      // 阻止浏览器滑动
169
+      stop(e) {
170
+        e.preventDefault();
171
+      },
172
+    },
173
+    onLoad(options) {
174
+      console.log(options);
175
+      this.options = options;
176
+      this.getReceiveRuleType();
177
+      // #ifdef APP-PLUS
178
+      webHandle("no", "app");
179
+      // #endif
180
+      // #ifdef H5
181
+      webHandle("no", "wx");
182
+      // #endif
183
+    },
184
+    onShow() {
185
+      // #ifdef H5
186
+      document.body.addEventListener("touchmove", this.stop, {
187
+        passive: false,
188
+      });
189
+      // #endif
190
+    },
191
+    onHide() {
192
+      // #ifdef H5
193
+      document.body.removeEventListener("touchmove", this.stop, {
194
+        passive: false,
195
+      });
196
+      // #endif
197
+    },
198
+  };
199
+</script>
200
+<style lang="less" scoped>
201
+  .formManagementWechat {
202
+    width: 100%;
203
+    height: 100%;
204
+    position: relative;
205
+
206
+    .foot_btn2 {
207
+      position: fixed;
208
+      bottom: 0;
209
+      right: 20rpx;
210
+      left: 20rpx;
211
+      line-height: 66rpx;
212
+      height: 100rpx;
213
+      border-top: 2rpx solid #e5e9ed;
214
+      background: #f9fafb;
215
+      display: flex;
216
+      justify-content: space-between;
217
+
218
+      .btn2 {
219
+        height: 66rpx;
220
+        width: 100%;
221
+        margin: 0 1%;
222
+        background-image: linear-gradient(to right, #72c172, #3bb197);
223
+        color: #fff;
224
+        border-radius: 8rpx;
225
+        font-size: 32rpx;
226
+        margin-top: 16rpx;
227
+        text-align: center;
228
+      }
229
+
230
+      .btn3 {
231
+        height: 66rpx;
232
+        width: 48%;
233
+        margin: 0 1%;
234
+        background-image: linear-gradient(to right, #72c172, #3bb197);
235
+        color: #fff;
236
+        border-radius: 8rpx;
237
+        font-size: 32rpx;
238
+        margin-top: 16rpx;
239
+        text-align: center;
240
+      }
241
+    }
242
+
243
+    .icon_transport {
244
+      color: #49b856;
245
+      font-size: 50rpx;
246
+
247
+      &.colorRed {
248
+        color: red;
249
+        font-size: 40rpx;
250
+      }
251
+    }
252
+
253
+    .page_tab {
254
+      width: 100%;
255
+      height: 96rpx;
256
+      display: flex;
257
+      position: fixed;
258
+      left: 0;
259
+      top: 0;
260
+      z-index: 999;
261
+
262
+      .page_tab_bar {
263
+        flex: 1;
264
+        font-size: 36rpx;
265
+        background: #fff;
266
+        display: flex;
267
+        justify-content: center;
268
+        align-items: center;
269
+        position: relative;
270
+
271
+        &:after {
272
+          content: "";
273
+          position: absolute;
274
+          left: 0;
275
+          bottom: 0;
276
+          height: 2rpx;
277
+          width: 100%;
278
+          background-color: transparent;
279
+        }
280
+
281
+        .tab_dept {
282
+          position: relative;
283
+
284
+          .changeDept {
285
+            white-space: nowrap;
286
+            margin: 0;
287
+            position: absolute;
288
+            right: 0;
289
+            top: 50%;
290
+            transform: translate(105%, -50%);
291
+            padding: 0 0.5em;
292
+            line-height: 2;
293
+          }
294
+        }
295
+
296
+        &.active {
297
+          color: #49b856;
298
+
299
+          &:after {
300
+            background-color: #49b856;
301
+          }
302
+        }
303
+      }
304
+    }
305
+
306
+    .zwsj {
307
+      position: absolute;
308
+      left: 50%;
309
+      top: 180rpx;
310
+      transform: translateX(-50%);
311
+
312
+      .zwsj-img {
313
+        width: 560rpx;
314
+      }
315
+
316
+      .zwsj-txt {
317
+        font-size: 36rpx;
318
+        font-weight: 700;
319
+        margin-top: 20rpx;
320
+        text-align: center;
321
+      }
322
+    }
323
+
324
+    .page_items {
325
+      height: calc(100vh - 284rpx);
326
+      padding: 0 20rpx;
327
+      padding-top: 96rpx;
328
+
329
+      .page_items_scroll {
330
+        height: 100%;
331
+        .goWorkSelect-item {
332
+          height: 52rpx;
333
+          display: flex;
334
+          align-items: center;
335
+          border-bottom: 2rpx solid #e5e9ed;
336
+          padding: 16rpx;
337
+
338
+          &.relative {
339
+            position: relative;
340
+
341
+            .picker {
342
+              position: absolute;
343
+              width: 100%;
344
+              padding-left: 64rpx;
345
+            }
346
+          }
347
+
348
+          button {
349
+            font-size: 32rpx;
350
+            height: 52rpx;
351
+            line-height: 52rpx;
352
+            margin: 0;
353
+            margin-left: 16rpx;
354
+            color: rgb(7, 134, 60);
355
+            font-weight: 700;
356
+          }
357
+        }
358
+      }
359
+    }
360
+  }
361
+</style>

+ 13 - 0
pages/receiptpage/receiptpage.vue

@@ -650,6 +650,15 @@
650 650
               id: 'KJJD|$|',
651 651
               name: "快捷建单",
652 652
             });
653
+          } else if (item.link === "kuaijiejiedan") {
654
+            this.arrayBigScreen.push({
655
+              id: 'kuaijiejiedan|$|',
656
+              name: "快捷接单",
657
+            });
658
+          } else if (item.link === "quickOrderAcceptanceWx") {
659
+            this.content.push({
660
+              text: "快捷接单",
661
+            });
653 662
           }
654 663
         });
655 664
       },
@@ -1087,6 +1096,10 @@
1087 1096
           uni.navigateTo({
1088 1097
             url: "../formManagementWechat/formManagementWechat",
1089 1098
           });
1099
+        } else if (e.item.text === "快捷接单") {
1100
+          uni.navigateTo({
1101
+            url: "../quickOrderAcceptanceWx/quickOrderAcceptanceWx",
1102
+          });
1090 1103
         }
1091 1104
       },
1092 1105
       // 我的二维码