|
@@ -67,515 +67,533 @@
|
67
|
67
|
<view class="L-l"></view>
|
68
|
68
|
<view class="R-l"></view>
|
69
|
69
|
</view>
|
70
|
|
- <button class="cube-toolbar-item" v-show="isShowBtn" @click="buildOrderAndSign()">
|
|
70
|
+ <button
|
|
71
|
+ class="cube-toolbar-item"
|
|
72
|
+ v-show="isShowBtn"
|
|
73
|
+ @click="buildOrderAndSign()"
|
|
74
|
+ >
|
71
|
75
|
接单并签到
|
72
|
76
|
</button>
|
73
|
77
|
<button class="cube-toolbar-item" v-show="!isShowBtn" @click="goBack()">
|
74
|
78
|
知道了
|
75
|
79
|
</button>
|
76
|
80
|
<!-- 弹窗 -->
|
77
|
|
- <showModel :title="models.title" :icon="models.icon" :disjunctor="models.disjunctor" :content="models.content"
|
78
|
|
- @ok="ok" @cancel="cancel" :operate="models.operate"></showModel>
|
|
81
|
+ <showModel
|
|
82
|
+ :title="models.title"
|
|
83
|
+ :icon="models.icon"
|
|
84
|
+ :disjunctor="models.disjunctor"
|
|
85
|
+ :content="models.content"
|
|
86
|
+ @ok="ok"
|
|
87
|
+ @cancel="cancel"
|
|
88
|
+ :operate="models.operate"
|
|
89
|
+ ></showModel>
|
79
|
90
|
<!-- 填写交接人账号弹窗 -->
|
80
|
|
- <selectAccount v-if="hosModels.disjunctor" :title="hosModels.title" :disjunctor="hosModels.disjunctor" @ok="hosOk"
|
81
|
|
- @cancel="hosCancel">
|
|
91
|
+ <selectAccount
|
|
92
|
+ v-if="hosModels.disjunctor"
|
|
93
|
+ :title="hosModels.title"
|
|
94
|
+ :disjunctor="hosModels.disjunctor"
|
|
95
|
+ @ok="hosOk"
|
|
96
|
+ @cancel="hosCancel"
|
|
97
|
+ >
|
82
|
98
|
</selectAccount>
|
83
|
99
|
</view>
|
84
|
100
|
</template>
|
85
|
101
|
<script>
|
86
|
|
- import selectAccount from "@/components/selectAccount/selectAccount";
|
87
|
|
- import {
|
88
|
|
- webHandle,
|
89
|
|
- post
|
90
|
|
- } from "../../http/http.js";
|
91
|
|
- export default {
|
92
|
|
- data() {
|
93
|
|
- return {
|
94
|
|
- // 弹窗model
|
95
|
|
- models: {
|
96
|
|
- disjunctor: false,
|
97
|
|
- },
|
98
|
|
- drugsBagDto: {}, //药包信息
|
99
|
|
- workOrder: {}, //药包关联的工单信息
|
100
|
|
- currentCode: "", //当前小扫描的科室二维码
|
101
|
|
- currentData: {}, //当前小扫描的工单对象
|
102
|
|
- // 填写交接人账号弹窗model
|
103
|
|
- hosModels: {
|
104
|
|
- disjunctor: false,
|
105
|
|
- },
|
106
|
|
- grabOrders: null,
|
107
|
|
- gotoFlag: true,
|
108
|
|
- };
|
109
|
|
- },
|
110
|
|
- components: {
|
111
|
|
- selectAccount,
|
112
|
|
- },
|
113
|
|
- computed: {
|
114
|
|
- isShowBtn() {
|
115
|
|
- if (this.workOrder.gdState) {
|
116
|
|
- let state = this.workOrder.gdState.value;
|
117
|
|
- // 待抢单,待接单,待到达,待送达
|
118
|
|
- return state == 2 || state == 3 || state == 4 || state == 5;
|
119
|
|
- } else {
|
120
|
|
- return false;
|
121
|
|
- }
|
|
102
|
+import selectAccount from "@/components/selectAccount/selectAccount";
|
|
103
|
+import { webHandle, post } from "../../http/http.js";
|
|
104
|
+export default {
|
|
105
|
+ data() {
|
|
106
|
+ return {
|
|
107
|
+ // 弹窗model
|
|
108
|
+ models: {
|
|
109
|
+ disjunctor: false,
|
122
|
110
|
},
|
123
|
|
- },
|
124
|
|
- methods: {
|
125
|
|
- goBack(){
|
126
|
|
- uni.navigateTo({
|
127
|
|
- url: "../receiptpage/receiptpage",
|
128
|
|
- });
|
|
111
|
+ drugsBagDto: {}, //药包信息
|
|
112
|
+ workOrder: {}, //药包关联的工单信息
|
|
113
|
+ currentCode: "", //当前小扫描的科室二维码
|
|
114
|
+ currentData: {}, //当前小扫描的工单对象
|
|
115
|
+ // 填写交接人账号弹窗model
|
|
116
|
+ hosModels: {
|
|
117
|
+ disjunctor: false,
|
129
|
118
|
},
|
130
|
|
- // 如果不是患者陪检或患者转运或其他
|
131
|
|
- // 科室签到
|
132
|
|
- nextDeptOrder_s(data, accountObj) {
|
133
|
|
- console.log(data, accountObj);
|
134
|
|
- let ids = [];
|
135
|
|
- let id = data.id;
|
136
|
|
- ids.push(id);
|
137
|
|
- let code = "";
|
138
|
|
- let postData = {
|
139
|
|
- ids,
|
140
|
|
- };
|
141
|
|
- if (accountObj) {
|
142
|
|
- postData.handover = [accountObj.accountId];
|
143
|
|
- }
|
144
|
|
- if (this.grabOrders) {
|
145
|
|
- postData.grabOrders = this.grabOrders;
|
146
|
|
- }
|
147
|
|
- if (this.currentCode) {
|
148
|
|
- code = this.currentCode;
|
149
|
|
- // 科室签到
|
150
|
|
- post("/workerOrder/orderSign/" + code, postData).then((res) => {
|
151
|
|
- uni.hideLoading();
|
152
|
|
- if (res.status == 200) {
|
153
|
|
- // 跳转到扫描科室
|
154
|
|
- // type1: res.type, //type类型
|
155
|
|
- // id: data.id, //工单ID
|
156
|
|
- // deptCode: code, //二维码
|
157
|
|
- // dept: res.dept //科室名称
|
158
|
|
- let urlObj = {
|
159
|
|
- url: `/pages/scanning_code/scanning_code?type=${
|
|
119
|
+ grabOrders: null,
|
|
120
|
+ gotoFlag: true,
|
|
121
|
+ };
|
|
122
|
+ },
|
|
123
|
+ components: {
|
|
124
|
+ selectAccount,
|
|
125
|
+ },
|
|
126
|
+ computed: {
|
|
127
|
+ isShowBtn() {
|
|
128
|
+ if (this.workOrder.gdState) {
|
|
129
|
+ let state = this.workOrder.gdState.value;
|
|
130
|
+ // 待抢单,待接单,待到达,待送达
|
|
131
|
+ return state == 2 || state == 3 || state == 4 || state == 5;
|
|
132
|
+ } else {
|
|
133
|
+ return false;
|
|
134
|
+ }
|
|
135
|
+ },
|
|
136
|
+ },
|
|
137
|
+ methods: {
|
|
138
|
+ goBack() {
|
|
139
|
+ uni.navigateTo({
|
|
140
|
+ url: "../receiptpage/receiptpage",
|
|
141
|
+ });
|
|
142
|
+ },
|
|
143
|
+ // 如果不是患者陪检或患者转运或其他
|
|
144
|
+ // 科室签到
|
|
145
|
+ nextDeptOrder_s(data, accountObj) {
|
|
146
|
+ console.log(data, accountObj);
|
|
147
|
+ let ids = [];
|
|
148
|
+ let id = data.id;
|
|
149
|
+ ids.push(id);
|
|
150
|
+ let code = "";
|
|
151
|
+ let postData = {
|
|
152
|
+ ids,
|
|
153
|
+ };
|
|
154
|
+ if (accountObj) {
|
|
155
|
+ postData.handover = [accountObj.accountId];
|
|
156
|
+ }
|
|
157
|
+ if (this.grabOrders) {
|
|
158
|
+ postData.grabOrders = this.grabOrders;
|
|
159
|
+ }
|
|
160
|
+ if (this.currentCode) {
|
|
161
|
+ code = this.currentCode;
|
|
162
|
+ // 科室签到
|
|
163
|
+ post("/workerOrder/orderSign/" + code, postData).then((res) => {
|
|
164
|
+ uni.hideLoading();
|
|
165
|
+ if (res.status == 200) {
|
|
166
|
+ // 跳转到扫描科室
|
|
167
|
+ // type1: res.type, //type类型
|
|
168
|
+ // id: data.id, //工单ID
|
|
169
|
+ // deptCode: code, //二维码
|
|
170
|
+ // dept: res.dept //科室名称
|
|
171
|
+ let urlObj = {
|
|
172
|
+ url: `/pages/scanning_code/scanning_code?type=${
|
160
|
173
|
data.taskType.associationType.value
|
161
|
174
|
}&type1=${res.type}&id=${data.id}&deptCode=${code}&dept=${
|
162
|
175
|
res.dept
|
163
|
176
|
}&accountObj=${encodeURIComponent(JSON.stringify(accountObj))}`,
|
164
|
|
- };
|
165
|
|
- if (this.grabOrders) {
|
166
|
|
- urlObj.url += `&grabOrders=666`;
|
167
|
|
- }
|
168
|
|
- uni.navigateTo(urlObj);
|
169
|
|
- } else {
|
170
|
|
- uni.navigateTo({
|
171
|
|
- url: `/pages/scanning_Result/scanning_Result?type=${data.taskType.associationType.value}&type1=${res.type}&id=${data.id}&status=600&msg=${res.msg}&isKs=1`,
|
172
|
|
- });
|
173
|
|
- }
|
174
|
|
- });
|
175
|
|
- }
|
176
|
|
- },
|
177
|
|
- // 签到
|
178
|
|
- orderSign(data, type, ress1) {
|
179
|
|
- this.currentData = data;
|
180
|
|
- console.log(data, "data");
|
181
|
|
- uni.showLoading({
|
182
|
|
- title: "加载中",
|
183
|
|
- mask: true,
|
184
|
|
- });
|
185
|
|
- //检验二维码的有效性
|
186
|
|
- post("/dept/scanning", {
|
187
|
|
- content: ress1,
|
188
|
|
- taskTypeId: data.taskType.id,
|
189
|
|
- gdState: data.gdState.id,
|
190
|
|
- }).then((result) => {
|
191
|
|
- this.currentCode = result.code;
|
192
|
|
- if (result.state == 200 || result.state == 201) {
|
193
|
|
- if (result.account) {
|
194
|
|
- if (type == 2) {
|
195
|
|
- this.nextDeptOrder_s(this.currentData, {
|
196
|
|
- account: result.account,
|
197
|
|
- accountName: result.name,
|
198
|
|
- accountId: result.id,
|
199
|
|
- });
|
200
|
|
- }
|
201
|
|
- } else {
|
202
|
|
- if (type == 2) {
|
203
|
|
- this.nextDeptOrder_s(this.currentData);
|
204
|
|
- }
|
|
177
|
+ };
|
|
178
|
+ if (this.grabOrders) {
|
|
179
|
+ urlObj.url += `&grabOrders=666`;
|
205
|
180
|
}
|
206
|
|
- } else if (result.state == "0000") {
|
207
|
|
- uni.hideLoading();
|
208
|
|
- this.showSelectAccount();
|
|
181
|
+ uni.navigateTo(urlObj);
|
209
|
182
|
} else {
|
210
|
|
- uni.hideLoading();
|
211
|
|
- uni.showToast({
|
212
|
|
- icon: "none",
|
213
|
|
- title: "请求失败!",
|
|
183
|
+ uni.navigateTo({
|
|
184
|
+ url: `/pages/scanning_Result/scanning_Result?type=${data.taskType.associationType.value}&type1=${res.type}&id=${data.id}&status=600&msg=${res.msg}&isKs=1`,
|
214
|
185
|
});
|
215
|
186
|
}
|
216
|
187
|
});
|
217
|
|
- },
|
218
|
|
- // 填写交接人账号-确认
|
219
|
|
- hosOk(data) {
|
220
|
|
- console.log(data);
|
221
|
|
- const {
|
222
|
|
- accountName,
|
223
|
|
- account,
|
224
|
|
- accountId
|
225
|
|
- } = data;
|
226
|
|
- if (!accountName && !account) {
|
227
|
|
- //没有填写交接人
|
228
|
|
- uni.showModal({
|
229
|
|
- title: "提示",
|
230
|
|
- content: "请填写交接人账号!",
|
231
|
|
- showCancel: false,
|
232
|
|
- success: function(res) {
|
233
|
|
- if (res.confirm) {
|
234
|
|
- console.log("用户点击确定");
|
235
|
|
- } else if (res.cancel) {
|
236
|
|
- console.log("用户点击取消");
|
237
|
|
- }
|
238
|
|
- },
|
239
|
|
- });
|
240
|
|
- return;
|
241
|
|
- } else if ((!accountName && account) || (accountName && !account)) {
|
242
|
|
- //没有填写交接人
|
243
|
|
- uni.showModal({
|
244
|
|
- title: "提示",
|
245
|
|
- content: "请填写正确的交接人账号!",
|
246
|
|
- showCancel: false,
|
247
|
|
- success: function(res) {
|
248
|
|
- if (res.confirm) {
|
249
|
|
- console.log("用户点击确定");
|
250
|
|
- } else if (res.cancel) {
|
251
|
|
- console.log("用户点击取消");
|
252
|
|
- }
|
253
|
|
- },
|
|
188
|
+ }
|
|
189
|
+ },
|
|
190
|
+ // 签到
|
|
191
|
+ orderSign(data, type, ress1) {
|
|
192
|
+ this.currentData = data;
|
|
193
|
+ console.log(data, "data");
|
|
194
|
+ uni.showLoading({
|
|
195
|
+ title: "加载中",
|
|
196
|
+ mask: true,
|
|
197
|
+ });
|
|
198
|
+ //检验二维码的有效性
|
|
199
|
+ post("/dept/scanning", {
|
|
200
|
+ content: ress1,
|
|
201
|
+ taskTypeId: data.taskType.id,
|
|
202
|
+ gdState: data.gdState.id,
|
|
203
|
+ }).then((result) => {
|
|
204
|
+ this.currentCode = result.code;
|
|
205
|
+ if (result.state == 200 || result.state == 201) {
|
|
206
|
+ if (result.account) {
|
|
207
|
+ if (type == 2) {
|
|
208
|
+ this.nextDeptOrder_s(this.currentData, {
|
|
209
|
+ account: result.account,
|
|
210
|
+ accountName: result.name,
|
|
211
|
+ accountId: result.id,
|
|
212
|
+ });
|
|
213
|
+ }
|
|
214
|
+ } else {
|
|
215
|
+ if (type == 2) {
|
|
216
|
+ this.nextDeptOrder_s(this.currentData);
|
|
217
|
+ }
|
|
218
|
+ }
|
|
219
|
+ } else if (result.state == "0000") {
|
|
220
|
+ uni.hideLoading();
|
|
221
|
+ this.showSelectAccount();
|
|
222
|
+ } else {
|
|
223
|
+ uni.hideLoading();
|
|
224
|
+ uni.showToast({
|
|
225
|
+ icon: "none",
|
|
226
|
+ title: "请求失败!",
|
254
|
227
|
});
|
255
|
|
- return;
|
256
|
|
- }
|
257
|
|
- this.hosModels.disjunctor = false;
|
258
|
|
- let associationTypeValue =
|
259
|
|
- this.currentData.taskType.associationType.value;
|
260
|
|
- console.log(associationTypeValue);
|
261
|
|
- if (
|
262
|
|
- associationTypeValue !== "patientTransport" &&
|
263
|
|
- associationTypeValue !== "inspect" &&
|
264
|
|
- associationTypeValue !== "other"
|
265
|
|
- ) {
|
266
|
|
- this.nextDeptOrder_s(this.currentData, data);
|
267
|
228
|
}
|
268
|
|
- },
|
269
|
|
- // 填写交接人账号-取消
|
270
|
|
- hosCancel() {
|
271
|
|
- this.hosModels.disjunctor = false;
|
272
|
|
- },
|
273
|
|
- // 填写交接人账号弹窗
|
274
|
|
- showSelectAccount() {
|
275
|
|
- this.hosModels = {
|
276
|
|
- title: "填写交接人账号",
|
277
|
|
- disjunctor: true,
|
278
|
|
- };
|
279
|
|
- },
|
280
|
|
- // 接单
|
281
|
|
- commonBuild() {
|
282
|
|
- let postData = {
|
283
|
|
- orderId: this.workOrder.id,
|
284
|
|
- };
|
285
|
|
- uni.showLoading({
|
286
|
|
- title: "加载中",
|
287
|
|
- mask: true,
|
|
229
|
+ });
|
|
230
|
+ },
|
|
231
|
+ // 填写交接人账号-确认
|
|
232
|
+ hosOk(data) {
|
|
233
|
+ console.log(data);
|
|
234
|
+ const { accountName, account, accountId } = data;
|
|
235
|
+ if (!accountName && !account) {
|
|
236
|
+ //没有填写交接人
|
|
237
|
+ uni.showModal({
|
|
238
|
+ title: "提示",
|
|
239
|
+ content: "请填写交接人账号!",
|
|
240
|
+ showCancel: false,
|
|
241
|
+ success: function (res) {
|
|
242
|
+ if (res.confirm) {
|
|
243
|
+ console.log("用户点击确定");
|
|
244
|
+ } else if (res.cancel) {
|
|
245
|
+ console.log("用户点击取消");
|
|
246
|
+ }
|
|
247
|
+ },
|
288
|
248
|
});
|
289
|
|
- post("/workerOrder/drugBagReceiving", postData).then((ress) => {
|
290
|
|
- uni.hideLoading();
|
291
|
|
- if (ress.status == 200) {
|
292
|
|
- this.grabOrders = ress.grabOrders ? ['666'] : null;
|
293
|
|
- this.orderSign(ress.workOrder, 2, ress.content);
|
294
|
|
- } else {
|
295
|
|
- uni.showToast({
|
296
|
|
- icon: "none",
|
297
|
|
- title: "请求失败!",
|
298
|
|
- });
|
299
|
|
- }
|
|
249
|
+ return;
|
|
250
|
+ } else if ((!accountName && account) || (accountName && !account)) {
|
|
251
|
+ //没有填写交接人
|
|
252
|
+ uni.showModal({
|
|
253
|
+ title: "提示",
|
|
254
|
+ content: "请填写正确的交接人账号!",
|
|
255
|
+ showCancel: false,
|
|
256
|
+ success: function (res) {
|
|
257
|
+ if (res.confirm) {
|
|
258
|
+ console.log("用户点击确定");
|
|
259
|
+ } else if (res.cancel) {
|
|
260
|
+ console.log("用户点击取消");
|
|
261
|
+ }
|
|
262
|
+ },
|
300
|
263
|
});
|
301
|
|
- },
|
302
|
|
- ok() {
|
303
|
|
- this.models.disjunctor = false;
|
304
|
|
- this.commonBuild();
|
305
|
|
- },
|
306
|
|
- // 取消
|
307
|
|
- cancel() {
|
308
|
|
- this.models.disjunctor = false;
|
309
|
|
- },
|
310
|
|
- // 接单并签到
|
311
|
|
- buildOrderAndSign() {
|
312
|
|
- if (!this.gotoFlag) {
|
313
|
|
- return;
|
314
|
|
- }
|
315
|
|
- this.gotoFlag = false;
|
316
|
|
- if (this.workOrder.gdState) {
|
317
|
|
- let state = this.workOrder.gdState.value;
|
318
|
|
- if (state == 4 || state == 5) {
|
319
|
|
- //待到达,待送达
|
320
|
|
- this.models = {
|
321
|
|
- disjunctor: true,
|
322
|
|
- title: "提示",
|
323
|
|
- content: "您想接单的药品,工单正在执行中。请确认是否继续接单签到?",
|
324
|
|
- icon: "warn",
|
325
|
|
- operate: {
|
326
|
|
- ok: "确定",
|
327
|
|
- cancel: "取消",
|
328
|
|
- },
|
329
|
|
- };
|
330
|
|
- } else {
|
331
|
|
- // 待接单 待抢单
|
332
|
|
- this.commonBuild();
|
|
264
|
+ return;
|
|
265
|
+ }
|
|
266
|
+ this.hosModels.disjunctor = false;
|
|
267
|
+ this.commonBuild(data);
|
|
268
|
+ },
|
|
269
|
+ // 填写交接人账号-取消
|
|
270
|
+ hosCancel() {
|
|
271
|
+ this.hosModels.disjunctor = false;
|
|
272
|
+ },
|
|
273
|
+ // 填写交接人账号弹窗
|
|
274
|
+ showSelectAccount() {
|
|
275
|
+ this.hosModels = {
|
|
276
|
+ title: "填写交接人账号",
|
|
277
|
+ disjunctor: true,
|
|
278
|
+ };
|
|
279
|
+ },
|
|
280
|
+ // 接单---data就是交接人信息
|
|
281
|
+ commonBuild(data) {
|
|
282
|
+ let postData = {
|
|
283
|
+ packId: this.workOrder.drugs.packid,
|
|
284
|
+ orderId: this.workOrder.id,
|
|
285
|
+ };
|
|
286
|
+ if(data){
|
|
287
|
+ //有交接人
|
|
288
|
+ postData.handover = data.accountId;
|
|
289
|
+ }
|
|
290
|
+ uni.showLoading({
|
|
291
|
+ title: "加载中",
|
|
292
|
+ mask: true,
|
|
293
|
+ });
|
|
294
|
+ post("/workerOrder/drugBagReceiving", postData).then((ress) => {
|
|
295
|
+ uni.hideLoading();
|
|
296
|
+ if (ress.status == 200) {
|
|
297
|
+ this.grabOrders = ress.grabOrders ? ["666"] : null;
|
|
298
|
+ // this.orderSign(ress.workOrder, 2, ress.content);
|
|
299
|
+ let info = {
|
|
300
|
+ targetDept:ress.data.target.dept,//所属科室
|
|
301
|
+ packid:ress.data.packid,//药包编码
|
|
302
|
+ accountName:data.accountName,//交接人姓名
|
|
303
|
+ account:data.account,//交接人账号
|
|
304
|
+ status:ress.status,
|
|
305
|
+ msg:ress.msg,
|
333
|
306
|
}
|
334
|
|
- }
|
335
|
|
- },
|
336
|
|
- //获取药包信息及其关联的工单信息
|
337
|
|
- queryDrugsBagForId(drugsBagId) {
|
338
|
|
- uni.showLoading({
|
339
|
|
- title: "加载中",
|
340
|
|
- mask: true,
|
341
|
|
- });
|
342
|
|
- post("/workerOrder/queryDrugsBagForId", {
|
343
|
|
- drugsBagId,
|
344
|
|
- }).then((res) => {
|
|
307
|
+ uni.navigateTo({
|
|
308
|
+ url: `../scanning_result_seimin/scanning_result_seimin?info=${encodeURIComponent(JSON.stringify(info))}`,
|
|
309
|
+ });
|
|
310
|
+ } else if (ress.status == "0000") {
|
345
|
311
|
uni.hideLoading();
|
346
|
|
- if (res.status == 200) {
|
347
|
|
- this.drugsBagDto = res.drugsBagDto || {};
|
348
|
|
- this.workOrder = res.workOrder || {};
|
349
|
|
- } else {
|
350
|
|
- uni.showToast({
|
351
|
|
- icon: "none",
|
352
|
|
- title: "请求失败",
|
353
|
|
- });
|
354
|
|
- }
|
355
|
|
- });
|
356
|
|
- },
|
|
312
|
+ this.showSelectAccount();
|
|
313
|
+ } else {
|
|
314
|
+ uni.showToast({
|
|
315
|
+ icon: "none",
|
|
316
|
+ title: "请求失败!",
|
|
317
|
+ });
|
|
318
|
+ }
|
|
319
|
+ });
|
|
320
|
+ },
|
|
321
|
+ ok() {
|
|
322
|
+ this.models.disjunctor = false;
|
|
323
|
+ this.commonBuild();
|
357
|
324
|
},
|
358
|
|
- onShow() {
|
|
325
|
+ // 取消
|
|
326
|
+ cancel() {
|
|
327
|
+ this.models.disjunctor = false;
|
359
|
328
|
this.gotoFlag = true;
|
360
|
329
|
},
|
361
|
|
- onLoad(options) {
|
362
|
|
- console.log(options);
|
363
|
|
- let {
|
364
|
|
- drugsBagId
|
365
|
|
- } = options;
|
366
|
|
- if (drugsBagId) {
|
367
|
|
- this.queryDrugsBagForId(drugsBagId);
|
|
330
|
+ // 接单并签到
|
|
331
|
+ buildOrderAndSign() {
|
|
332
|
+ if (!this.gotoFlag) {
|
|
333
|
+ return;
|
|
334
|
+ }
|
|
335
|
+ this.gotoFlag = false;
|
|
336
|
+ if (this.workOrder.gdState) {
|
|
337
|
+ let state = this.workOrder.gdState.value;
|
|
338
|
+ if (state == 4 || state == 5) {
|
|
339
|
+ //待到达,待送达
|
|
340
|
+ this.models = {
|
|
341
|
+ disjunctor: true,
|
|
342
|
+ title: "提示",
|
|
343
|
+ content: "您想接单的药品,工单正在执行中。请确认是否继续接单签到?",
|
|
344
|
+ icon: "warn",
|
|
345
|
+ operate: {
|
|
346
|
+ ok: "确定",
|
|
347
|
+ cancel: "取消",
|
|
348
|
+ },
|
|
349
|
+ };
|
|
350
|
+ } else {
|
|
351
|
+ // 待接单 待抢单
|
|
352
|
+ this.commonBuild();
|
|
353
|
+ }
|
368
|
354
|
}
|
369
|
|
- // this.infoDATA = JSON.parse(options.infoDATA); //详细信息
|
370
|
|
- // console.log(this.infoDATA)
|
371
|
|
- // this.res["status"] = options.status; //状态码
|
372
|
|
- // this.res["msg"] = options.msg; //返回的信息
|
373
|
|
- // #ifdef APP-PLUS
|
374
|
|
- webHandle("no", "app");
|
375
|
|
- // #endif
|
376
|
|
- // #ifdef H5
|
377
|
|
- webHandle("no", "wx");
|
378
|
|
- // #endif
|
379
|
355
|
},
|
380
|
|
- };
|
|
356
|
+ //获取药包信息及其关联的工单信息
|
|
357
|
+ queryDrugsBagForId(drugsBagId) {
|
|
358
|
+ uni.showLoading({
|
|
359
|
+ title: "加载中",
|
|
360
|
+ mask: true,
|
|
361
|
+ });
|
|
362
|
+ post("/workerOrder/queryDrugsBagForId", {
|
|
363
|
+ drugsBagId,
|
|
364
|
+ }).then((res) => {
|
|
365
|
+ uni.hideLoading();
|
|
366
|
+ if (res.status == 200) {
|
|
367
|
+ this.drugsBagDto = res.drugsBagDto || {};
|
|
368
|
+ this.workOrder = res.workOrder || {};
|
|
369
|
+ } else {
|
|
370
|
+ uni.showToast({
|
|
371
|
+ icon: "none",
|
|
372
|
+ title: "请求失败",
|
|
373
|
+ });
|
|
374
|
+ }
|
|
375
|
+ });
|
|
376
|
+ },
|
|
377
|
+ },
|
|
378
|
+ onShow() {
|
|
379
|
+ this.gotoFlag = true;
|
|
380
|
+ },
|
|
381
|
+ onLoad(options) {
|
|
382
|
+ console.log(options);
|
|
383
|
+ let { drugsBagId } = options;
|
|
384
|
+ if (drugsBagId) {
|
|
385
|
+ this.queryDrugsBagForId(drugsBagId);
|
|
386
|
+ }
|
|
387
|
+ // this.infoDATA = JSON.parse(options.infoDATA); //详细信息
|
|
388
|
+ // console.log(this.infoDATA)
|
|
389
|
+ // this.res["status"] = options.status; //状态码
|
|
390
|
+ // this.res["msg"] = options.msg; //返回的信息
|
|
391
|
+ // #ifdef APP-PLUS
|
|
392
|
+ webHandle("no", "app");
|
|
393
|
+ // #endif
|
|
394
|
+ // #ifdef H5
|
|
395
|
+ webHandle("no", "wx");
|
|
396
|
+ // #endif
|
|
397
|
+ },
|
|
398
|
+};
|
381
|
399
|
</script>
|
382
|
400
|
<style lang="less" scoped>
|
383
|
|
- .pharmacyDetails {
|
384
|
|
- background-color: rgb(249, 250, 251);
|
385
|
|
- padding-top: 10%;
|
|
401
|
+.pharmacyDetails {
|
|
402
|
+ background-color: rgb(249, 250, 251);
|
|
403
|
+ padding-top: 10%;
|
386
|
404
|
|
387
|
|
- .pharmacyDetails_title {
|
388
|
|
- font-size: 46rpx;
|
389
|
|
- font-weight: 550;
|
390
|
|
- text-align: center;
|
391
|
|
- }
|
|
405
|
+ .pharmacyDetails_title {
|
|
406
|
+ font-size: 46rpx;
|
|
407
|
+ font-weight: 550;
|
|
408
|
+ text-align: center;
|
|
409
|
+ }
|
|
410
|
+
|
|
411
|
+ .page_item_wrap {
|
|
412
|
+ position: relative;
|
|
413
|
+ margin-top: 32rpx;
|
392
|
414
|
|
393
|
|
- .page_item_wrap {
|
|
415
|
+ .page_item {
|
|
416
|
+ margin-top: 16rpx;
|
|
417
|
+ margin-bottom: 124rpx;
|
|
418
|
+ background: #fff;
|
|
419
|
+ border-radius: 8rpx;
|
|
420
|
+ margin: 0 20rpx;
|
|
421
|
+ border: 2rpx solid #e5e9ed;
|
394
|
422
|
position: relative;
|
395
|
|
- margin-top: 32rpx;
|
|
423
|
+ overflow: hidden;
|
|
424
|
+ padding: 0 16rpx;
|
396
|
425
|
|
397
|
|
- .page_item {
|
398
|
|
- margin-top: 16rpx;
|
399
|
|
- margin-bottom: 124rpx;
|
400
|
|
- background: #fff;
|
401
|
|
- border-radius: 8rpx;
|
402
|
|
- margin: 0 20rpx;
|
|
426
|
+ .L {
|
|
427
|
+ width: 40rpx;
|
|
428
|
+ height: 40rpx;
|
|
429
|
+ border-radius: 50%;
|
|
430
|
+ background: #f9fafb;
|
|
431
|
+ position: absolute;
|
|
432
|
+ left: -20rpx;
|
|
433
|
+ top: 68rpx;
|
403
|
434
|
border: 2rpx solid #e5e9ed;
|
404
|
|
- position: relative;
|
405
|
|
- overflow: hidden;
|
406
|
|
- padding: 0 16rpx;
|
407
|
|
-
|
408
|
|
- .L {
|
409
|
|
- width: 40rpx;
|
410
|
|
- height: 40rpx;
|
411
|
|
- border-radius: 50%;
|
412
|
|
- background: #f9fafb;
|
413
|
|
- position: absolute;
|
414
|
|
- left: -20rpx;
|
415
|
|
- top: 68rpx;
|
416
|
|
- border: 2rpx solid #e5e9ed;
|
417
|
|
- }
|
418
|
|
-
|
419
|
|
- .R {
|
420
|
|
- width: 40rpx;
|
421
|
|
- height: 40rpx;
|
422
|
|
- border-radius: 50%;
|
423
|
|
- background: #f9fafb;
|
424
|
|
- position: absolute;
|
425
|
|
- float: right;
|
426
|
|
- right: -20rpx;
|
427
|
|
- top: 68rpx;
|
428
|
|
- border: 2rpx solid #e5e9ed;
|
429
|
|
- }
|
|
435
|
+ }
|
430
|
436
|
|
431
|
|
- .page_item_top {
|
432
|
|
- height: 88rpx;
|
433
|
|
- border-bottom: 2rpx dashed #e5e9ed;
|
434
|
|
- padding: 0 16rpx;
|
|
437
|
+ .R {
|
|
438
|
+ width: 40rpx;
|
|
439
|
+ height: 40rpx;
|
|
440
|
+ border-radius: 50%;
|
|
441
|
+ background: #f9fafb;
|
|
442
|
+ position: absolute;
|
|
443
|
+ float: right;
|
|
444
|
+ right: -20rpx;
|
|
445
|
+ top: 68rpx;
|
|
446
|
+ border: 2rpx solid #e5e9ed;
|
|
447
|
+ }
|
435
|
448
|
|
436
|
|
- .page_item_top-inner {
|
437
|
|
- display: flex;
|
438
|
|
- justify-content: space-between;
|
439
|
|
- align-items: center;
|
440
|
|
- height: 100%;
|
|
449
|
+ .page_item_top {
|
|
450
|
+ height: 88rpx;
|
|
451
|
+ border-bottom: 2rpx dashed #e5e9ed;
|
|
452
|
+ padding: 0 16rpx;
|
441
|
453
|
|
442
|
|
- .page_item_top_L {
|
443
|
|
- .L_text {
|
444
|
|
- font-size: 32rpx;
|
445
|
|
- font-weight: 700;
|
446
|
|
- }
|
447
|
|
- }
|
|
454
|
+ .page_item_top-inner {
|
|
455
|
+ display: flex;
|
|
456
|
+ justify-content: space-between;
|
|
457
|
+ align-items: center;
|
|
458
|
+ height: 100%;
|
448
|
459
|
|
449
|
|
- .page_item_top_R {
|
|
460
|
+ .page_item_top_L {
|
|
461
|
+ .L_text {
|
450
|
462
|
font-size: 32rpx;
|
451
|
|
-
|
452
|
|
- .L_iocn {
|
453
|
|
- color: rgb(7, 134, 60);
|
454
|
|
- font-size: 36rpx;
|
455
|
|
- font-weight: 700;
|
456
|
|
- }
|
|
463
|
+ font-weight: 700;
|
457
|
464
|
}
|
458
|
465
|
}
|
459
|
|
- }
|
460
|
466
|
|
461
|
|
- .page_item_cont {
|
462
|
|
- min-height: 180rpx;
|
463
|
|
- max-height: 424rpx;
|
464
|
|
- padding: 0 16rpx;
|
465
|
|
- text-align: left;
|
466
|
|
- position: relative;
|
467
|
|
-
|
468
|
|
- .text_big {
|
|
467
|
+ .page_item_top_R {
|
469
|
468
|
font-size: 32rpx;
|
470
|
|
- font-weight: 700;
|
471
|
469
|
|
472
|
|
- text {
|
|
470
|
+ .L_iocn {
|
|
471
|
+ color: rgb(7, 134, 60);
|
|
472
|
+ font-size: 36rpx;
|
473
|
473
|
font-weight: 700;
|
474
|
|
- line-height: 1.5;
|
475
|
474
|
}
|
476
|
475
|
}
|
|
476
|
+ }
|
|
477
|
+ }
|
477
|
478
|
|
478
|
|
- .line {
|
479
|
|
- height: 20rpx;
|
480
|
|
- width: 2rpx;
|
481
|
|
- border-left: 2rpx solid #e5e9ed;
|
482
|
|
- position: absolute;
|
483
|
|
- top: 82rpx;
|
484
|
|
- left: 40rpx;
|
485
|
|
- }
|
|
479
|
+ .page_item_cont {
|
|
480
|
+ min-height: 180rpx;
|
|
481
|
+ max-height: 424rpx;
|
|
482
|
+ padding: 0 16rpx;
|
|
483
|
+ text-align: left;
|
|
484
|
+ position: relative;
|
486
|
485
|
|
487
|
|
- .page_item_cont_T {
|
488
|
|
- padding-top: 28rpx;
|
489
|
|
- font-size: 28rpx;
|
|
486
|
+ .text_big {
|
|
487
|
+ font-size: 32rpx;
|
|
488
|
+ font-weight: 700;
|
490
|
489
|
|
491
|
|
- .page_item_cont_title {
|
492
|
|
- height: 100%;
|
493
|
|
- font-size: 32rpx;
|
494
|
|
- display: flex;
|
495
|
|
- justify-content: space-between;
|
496
|
|
- }
|
|
490
|
+ text {
|
|
491
|
+ font-weight: 700;
|
|
492
|
+ line-height: 1.5;
|
497
|
493
|
}
|
|
494
|
+ }
|
|
495
|
+
|
|
496
|
+ .line {
|
|
497
|
+ height: 20rpx;
|
|
498
|
+ width: 2rpx;
|
|
499
|
+ border-left: 2rpx solid #e5e9ed;
|
|
500
|
+ position: absolute;
|
|
501
|
+ top: 82rpx;
|
|
502
|
+ left: 40rpx;
|
|
503
|
+ }
|
498
|
504
|
|
499
|
|
- .page_item_cont_B {
|
500
|
|
- padding-top: 28rpx;
|
501
|
|
- margin-bottom: 28rpx;
|
|
505
|
+ .page_item_cont_T {
|
|
506
|
+ padding-top: 28rpx;
|
|
507
|
+ font-size: 28rpx;
|
502
|
508
|
|
503
|
|
- .page_item_cont_title {
|
504
|
|
- font-size: 32rpx;
|
505
|
|
- display: flex;
|
506
|
|
- justify-content: space-between;
|
507
|
|
- align-items: center;
|
508
|
|
- }
|
|
509
|
+ .page_item_cont_title {
|
|
510
|
+ height: 100%;
|
|
511
|
+ font-size: 32rpx;
|
|
512
|
+ display: flex;
|
|
513
|
+ justify-content: space-between;
|
509
|
514
|
}
|
|
515
|
+ }
|
510
|
516
|
|
511
|
|
- .page_item_cont_C {
|
512
|
|
- margin-bottom: 28rpx;
|
|
517
|
+ .page_item_cont_B {
|
|
518
|
+ padding-top: 28rpx;
|
|
519
|
+ margin-bottom: 28rpx;
|
513
|
520
|
|
514
|
|
- .page_item_cont_title_C {
|
515
|
|
- font-size: 32rpx;
|
516
|
|
- display: flex;
|
517
|
|
- justify-content: space-between;
|
518
|
|
- align-items: center;
|
519
|
|
- }
|
|
521
|
+ .page_item_cont_title {
|
|
522
|
+ font-size: 32rpx;
|
|
523
|
+ display: flex;
|
|
524
|
+ justify-content: space-between;
|
|
525
|
+ align-items: center;
|
520
|
526
|
}
|
|
527
|
+ }
|
|
528
|
+
|
|
529
|
+ .page_item_cont_C {
|
|
530
|
+ margin-bottom: 28rpx;
|
521
|
531
|
|
522
|
|
- #infos {
|
523
|
|
- display: none;
|
|
532
|
+ .page_item_cont_title_C {
|
|
533
|
+ font-size: 32rpx;
|
|
534
|
+ display: flex;
|
|
535
|
+ justify-content: space-between;
|
|
536
|
+ align-items: center;
|
524
|
537
|
}
|
525
|
538
|
}
|
526
|
|
- }
|
527
|
539
|
|
528
|
|
- .L-l {
|
529
|
|
- width: 2rpx;
|
530
|
|
- height: 40rpx;
|
531
|
|
- background: #f9fafb;
|
532
|
|
- position: absolute;
|
533
|
|
- left: 20rpx;
|
534
|
|
- top: 72rpx;
|
535
|
|
- }
|
536
|
|
-
|
537
|
|
- .R-l {
|
538
|
|
- width: 2rpx;
|
539
|
|
- height: 40rpx;
|
540
|
|
- background: #f9fafb;
|
541
|
|
- position: absolute;
|
542
|
|
- right: 20rpx;
|
543
|
|
- top: 72rpx;
|
|
540
|
+ #infos {
|
|
541
|
+ display: none;
|
|
542
|
+ }
|
544
|
543
|
}
|
545
|
544
|
}
|
546
|
545
|
|
547
|
|
- .cube-toolbar-item {
|
548
|
|
- width: 710rpx;
|
549
|
|
- height: 68rpx;
|
550
|
|
- line-height: 68rpx;
|
551
|
|
- position: fixed;
|
|
546
|
+ .L-l {
|
|
547
|
+ width: 2rpx;
|
|
548
|
+ height: 40rpx;
|
|
549
|
+ background: #f9fafb;
|
|
550
|
+ position: absolute;
|
552
|
551
|
left: 20rpx;
|
553
|
|
- bottom: 160rpx;
|
554
|
|
- border-radius: 8rpx;
|
555
|
|
- background: linear-gradient(to right, #72c172, #3bb197);
|
556
|
|
- font-size: 36rpx;
|
557
|
|
- color: #fff;
|
558
|
|
- text-align: center;
|
|
552
|
+ top: 72rpx;
|
559
|
553
|
}
|
560
|
554
|
|
561
|
|
- .btn-wrap {
|
562
|
|
- display: flex;
|
563
|
|
- justify-content: space-between;
|
564
|
|
- position: fixed;
|
565
|
|
- left: 20rpx;
|
566
|
|
- bottom: 160rpx;
|
|
555
|
+ .R-l {
|
|
556
|
+ width: 2rpx;
|
|
557
|
+ height: 40rpx;
|
|
558
|
+ background: #f9fafb;
|
|
559
|
+ position: absolute;
|
|
560
|
+ right: 20rpx;
|
|
561
|
+ top: 72rpx;
|
567
|
562
|
}
|
|
563
|
+ }
|
568
|
564
|
|
569
|
|
- .cube-toolbar-item1 {
|
570
|
|
- width: 350rpx;
|
571
|
|
- height: 68rpx;
|
572
|
|
- line-height: 68rpx;
|
573
|
|
- border-radius: 8rpx;
|
574
|
|
- margin: 0 5rpx;
|
575
|
|
- background: linear-gradient(to right, #72c172, #3bb197);
|
576
|
|
- font-size: 36rpx;
|
577
|
|
- color: #fff;
|
578
|
|
- text-align: center;
|
579
|
|
- }
|
|
565
|
+ .cube-toolbar-item {
|
|
566
|
+ width: 710rpx;
|
|
567
|
+ height: 68rpx;
|
|
568
|
+ line-height: 68rpx;
|
|
569
|
+ position: fixed;
|
|
570
|
+ left: 20rpx;
|
|
571
|
+ bottom: 160rpx;
|
|
572
|
+ border-radius: 8rpx;
|
|
573
|
+ background: linear-gradient(to right, #72c172, #3bb197);
|
|
574
|
+ font-size: 36rpx;
|
|
575
|
+ color: #fff;
|
|
576
|
+ text-align: center;
|
|
577
|
+ }
|
|
578
|
+
|
|
579
|
+ .btn-wrap {
|
|
580
|
+ display: flex;
|
|
581
|
+ justify-content: space-between;
|
|
582
|
+ position: fixed;
|
|
583
|
+ left: 20rpx;
|
|
584
|
+ bottom: 160rpx;
|
|
585
|
+ }
|
|
586
|
+
|
|
587
|
+ .cube-toolbar-item1 {
|
|
588
|
+ width: 350rpx;
|
|
589
|
+ height: 68rpx;
|
|
590
|
+ line-height: 68rpx;
|
|
591
|
+ border-radius: 8rpx;
|
|
592
|
+ margin: 0 5rpx;
|
|
593
|
+ background: linear-gradient(to right, #72c172, #3bb197);
|
|
594
|
+ font-size: 36rpx;
|
|
595
|
+ color: #fff;
|
|
596
|
+ text-align: center;
|
580
|
597
|
}
|
|
598
|
+}
|
581
|
599
|
</style>
|