|
@@ -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>
|