|
@@ -74,7 +74,10 @@
|
74
|
74
|
<view class="zwsj_txt">暂无工单</view>
|
75
|
75
|
</view>
|
76
|
76
|
</view>
|
77
|
|
- <view class="page_items footerOtherMargin" v-if="workData && workData.length > 0">
|
|
77
|
+ <view
|
|
78
|
+ class="page_items footerOtherMargin"
|
|
79
|
+ v-if="workData && workData.length > 0"
|
|
80
|
+ >
|
78
|
81
|
<view class="page_item" v-for="(infoDATA, i) of workData" :key="i">
|
79
|
82
|
<view class="page_item_top">
|
80
|
83
|
<view class="page_item_top_L">
|
|
@@ -208,8 +211,24 @@
|
208
|
211
|
<view class="page_item_foot">
|
209
|
212
|
<view class="page_item_foot_text">
|
210
|
213
|
<text class="text1">状态</text>
|
211
|
|
- <text class="text2" v-if="!(infoDATA.gdState.value == '5'&&infoDATA.taskType.associationType.value == 'inspect')">{{ infoDATA.gdState.name }}</text>
|
212
|
|
- <text class="text2" v-if="infoDATA.gdState.value == '5'&&infoDATA.taskType.associationType.value == 'inspect'">待送回</text>
|
|
214
|
+ <text
|
|
215
|
+ class="text2"
|
|
216
|
+ v-if="
|
|
217
|
+ !(
|
|
218
|
+ infoDATA.gdState.value == '5' &&
|
|
219
|
+ infoDATA.taskType.associationType.value == 'inspect'
|
|
220
|
+ )
|
|
221
|
+ "
|
|
222
|
+ >{{ infoDATA.gdState.name }}</text
|
|
223
|
+ >
|
|
224
|
+ <text
|
|
225
|
+ class="text2"
|
|
226
|
+ v-if="
|
|
227
|
+ infoDATA.gdState.value == '5' &&
|
|
228
|
+ infoDATA.taskType.associationType.value == 'inspect'
|
|
229
|
+ "
|
|
230
|
+ >待送回</text
|
|
231
|
+ >
|
213
|
232
|
</view>
|
214
|
233
|
<view
|
215
|
234
|
class="page_item_foot_text"
|
|
@@ -249,7 +268,10 @@
|
249
|
268
|
</view>
|
250
|
269
|
</view>
|
251
|
270
|
|
252
|
|
- <view class="foot_btn2 footerPadding" v-if="workData && workData.length > 0">
|
|
271
|
+ <view
|
|
272
|
+ class="foot_btn2 footerPadding"
|
|
273
|
+ v-if="workData && workData.length > 0"
|
|
274
|
+ >
|
253
|
275
|
<view class="btn1" @click="allStart()" v-if="flag">一键操作</view>
|
254
|
276
|
<view class="btn1" v-if="!flag">一键操作</view>
|
255
|
277
|
<view class="btn2" @click="showAlert">知道了</view>
|
|
@@ -267,6 +289,15 @@
|
267
|
289
|
@know="know"
|
268
|
290
|
:operate="models.operate"
|
269
|
291
|
></showModel>
|
|
292
|
+ <!-- 填写交接人账号弹窗 -->
|
|
293
|
+ <selectAccount
|
|
294
|
+ v-if="hosModels.disjunctor"
|
|
295
|
+ :title="hosModels.title"
|
|
296
|
+ :disjunctor="hosModels.disjunctor"
|
|
297
|
+ @ok="hosOk"
|
|
298
|
+ @cancel="hosCancel"
|
|
299
|
+ >
|
|
300
|
+ </selectAccount>
|
270
|
301
|
</view>
|
271
|
302
|
</template>
|
272
|
303
|
<script>
|
|
@@ -275,7 +306,11 @@ import { post, SM, webHandle } from "../../http/http.js";
|
275
|
306
|
export default {
|
276
|
307
|
data() {
|
277
|
308
|
return {
|
278
|
|
- SMFlag:true,
|
|
309
|
+ SMFlag: true,
|
|
310
|
+ // 填写交接人账号弹窗model
|
|
311
|
+ hosModels: {
|
|
312
|
+ disjunctor: false,
|
|
313
|
+ },
|
279
|
314
|
// 弹窗model
|
280
|
315
|
models: {
|
281
|
316
|
disjunctor: false,
|
|
@@ -296,12 +331,122 @@ export default {
|
296
|
331
|
};
|
297
|
332
|
},
|
298
|
333
|
methods: {
|
|
334
|
+ // 填写交接人账号-确认
|
|
335
|
+ hosOk(data) {
|
|
336
|
+ console.log(data);
|
|
337
|
+ const { accountName, account, accountId } = data;
|
|
338
|
+ if (!accountName && !account) {
|
|
339
|
+ //没有填写交接人
|
|
340
|
+ uni.showModal({
|
|
341
|
+ title: "提示",
|
|
342
|
+ content: "请填写交接人账号!",
|
|
343
|
+ showCancel: false,
|
|
344
|
+ success: function (res) {
|
|
345
|
+ if (res.confirm) {
|
|
346
|
+ console.log("用户点击确定");
|
|
347
|
+ } else if (res.cancel) {
|
|
348
|
+ console.log("用户点击取消");
|
|
349
|
+ }
|
|
350
|
+ },
|
|
351
|
+ });
|
|
352
|
+ return;
|
|
353
|
+ } else if ((!accountName && account) || (accountName && !account)) {
|
|
354
|
+ //没有填写交接人
|
|
355
|
+ uni.showModal({
|
|
356
|
+ title: "提示",
|
|
357
|
+ content: "请填写正确的交接人账号!",
|
|
358
|
+ showCancel: false,
|
|
359
|
+ success: function (res) {
|
|
360
|
+ if (res.confirm) {
|
|
361
|
+ console.log("用户点击确定");
|
|
362
|
+ } else if (res.cancel) {
|
|
363
|
+ console.log("用户点击取消");
|
|
364
|
+ }
|
|
365
|
+ },
|
|
366
|
+ });
|
|
367
|
+ return;
|
|
368
|
+ }
|
|
369
|
+ this.hosModels.disjunctor = false;
|
|
370
|
+ this.orderDeptHandler(false,data);
|
|
371
|
+ },
|
|
372
|
+ // 填写交接人账号-取消
|
|
373
|
+ hosCancel() {
|
|
374
|
+ this.hosModels.disjunctor = false;
|
|
375
|
+ },
|
|
376
|
+ // 填写交接人账号弹窗
|
|
377
|
+ showSelectAccount() {
|
|
378
|
+ this.hosModels = {
|
|
379
|
+ title: "填写交接人账号",
|
|
380
|
+ disjunctor: true,
|
|
381
|
+ };
|
|
382
|
+ },
|
299
|
383
|
// 知道了
|
300
|
384
|
showAlert() {
|
301
|
385
|
uni.navigateTo({
|
302
|
386
|
url: "../receiptpage/receiptpage",
|
303
|
387
|
});
|
304
|
388
|
},
|
|
389
|
+ //科室签到
|
|
390
|
+ //bigScanner----判断是否需要交接人
|
|
391
|
+ //accountObj----弹窗填写的交接人信息
|
|
392
|
+ orderDeptHandler(bigScanner,accountObj) {
|
|
393
|
+ let type = "orderSign/" + this.code;
|
|
394
|
+ let list = { ids: this.userId.ids };
|
|
395
|
+ bigScanner && (list.bigScanner = ['666']);
|
|
396
|
+ if (accountObj) {
|
|
397
|
+ list.handover = [accountObj.accountId];
|
|
398
|
+ }
|
|
399
|
+ uni.showLoading({
|
|
400
|
+ title: "加载中",
|
|
401
|
+ mask: true,
|
|
402
|
+ });
|
|
403
|
+ post("/workerOrder/" + type, list).then((res) => {
|
|
404
|
+ uni.hideLoading();
|
|
405
|
+ if (res.status == 200) {
|
|
406
|
+ if (this.tabType == "inspect" || this.tabType == "patientTransport") {
|
|
407
|
+ if (res.ids) {
|
|
408
|
+ for (var i = 0; i < this.userId.ids.length; i++) {
|
|
409
|
+ if (this.userId.ids[i] == res.ids[0]) {
|
|
410
|
+ this.userId.ids.splice(i, 1);
|
|
411
|
+ }
|
|
412
|
+ }
|
|
413
|
+ }
|
|
414
|
+ uni.navigateTo({
|
|
415
|
+ url: `../scanning_djInfo/scanning_djInfo?type=${
|
|
416
|
+ this.tabType
|
|
417
|
+ }&type1=${res.type}&infoData=${res.data}&status=${
|
|
418
|
+ res.status
|
|
419
|
+ }&msg=${res.msg}&deptCode=${this.code}&dept=${
|
|
420
|
+ res.dept
|
|
421
|
+ }&ids=${encodeURIComponent(
|
|
422
|
+ JSON.stringify(this.userId.ids)
|
|
423
|
+ )}&model=${encodeURIComponent(JSON.stringify(res))}`,
|
|
424
|
+ });
|
|
425
|
+ } else {
|
|
426
|
+ uni.navigateTo({
|
|
427
|
+ url: `../scanning_djEnd/scanning_djEnd?type=${
|
|
428
|
+ this.tabType
|
|
429
|
+ }&type1=${res.type}&code=${this.code}&dept=${
|
|
430
|
+ res.dept
|
|
431
|
+ }&ids=${encodeURIComponent(
|
|
432
|
+ JSON.stringify(this.userId.ids)
|
|
433
|
+ )}&model=${encodeURIComponent(JSON.stringify(res))}&accountObj=${encodeURIComponent(JSON.stringify(accountObj))}&deptId=${res.deptId}`,
|
|
434
|
+ });
|
|
435
|
+ }
|
|
436
|
+ } else if (res.status == "0000") {
|
|
437
|
+ this.showSelectAccount(); //yeye
|
|
438
|
+ } else {
|
|
439
|
+ this.flag = true;
|
|
440
|
+ uni.navigateTo({
|
|
441
|
+ url: `../scanning_djEnd/scanning_djEnd?type=${this.tabType}&type1=${
|
|
442
|
+ res.type
|
|
443
|
+ }&code=${this.code}&dept=${res.dept}&ids=${encodeURIComponent(
|
|
444
|
+ JSON.stringify(this.userId.ids)
|
|
445
|
+ )}&model=${encodeURIComponent(JSON.stringify(res))}&deptId=${res.deptId}`,
|
|
446
|
+ });
|
|
447
|
+ }
|
|
448
|
+ });
|
|
449
|
+ },
|
305
|
450
|
//一键操作
|
306
|
451
|
allStart() {
|
307
|
452
|
clearTimeout(this.flagTimer);
|
|
@@ -318,124 +463,84 @@ export default {
|
318
|
463
|
this.tabType == "specimen" ||
|
319
|
464
|
this.tabType == "specimenPlan"
|
320
|
465
|
) {
|
321
|
|
- type = "orderSign/" + this.code;
|
322
|
|
- list = {ids:this.userId.ids};
|
323
|
|
- uni.showLoading({
|
324
|
|
- title: "加载中",
|
325
|
|
- mask: true,
|
326
|
|
- });
|
327
|
|
- post("/workerOrder/" + type, list).then((res) => {
|
328
|
|
- uni.hideLoading();
|
329
|
|
- if (res.status == 200) {
|
330
|
|
- if (
|
331
|
|
- this.tabType == "inspect" ||
|
332
|
|
- this.tabType == "patientTransport"
|
333
|
|
- ) {
|
334
|
|
- if (res.ids) {
|
335
|
|
- for (var i = 0; i < this.userId.ids.length; i++) {
|
336
|
|
- if (this.userId.ids[i] == res.ids[0]) {
|
337
|
|
- this.userId.ids.splice(i, 1);
|
338
|
|
- }
|
339
|
|
- }
|
340
|
|
- }
|
341
|
|
- uni.navigateTo({
|
342
|
|
- url: `../scanning_djInfo/scanning_djInfo?type=${
|
343
|
|
- this.tabType
|
344
|
|
- }&type1=${res.type}&infoData=${res.data}&status=${
|
345
|
|
- res.status
|
346
|
|
- }&msg=${res.msg}&deptCode=${this.code}&dept=${
|
347
|
|
- res.dept
|
348
|
|
- }&ids=${encodeURIComponent(
|
349
|
|
- JSON.stringify(this.userId.ids)
|
350
|
|
- )}&model=${encodeURIComponent(JSON.stringify(res))}`,
|
351
|
|
- });
|
352
|
|
- } else {
|
353
|
|
- uni.navigateTo({
|
354
|
|
- url: `../scanning_djEnd/scanning_djEnd?type=${
|
355
|
|
- this.tabType
|
356
|
|
- }&type1=${res.type}&code=${this.code}&dept=${
|
357
|
|
- res.dept
|
358
|
|
- }&ids=${encodeURIComponent(
|
359
|
|
- JSON.stringify(this.userId.ids)
|
360
|
|
- )}&model=${encodeURIComponent(JSON.stringify(res))}`,
|
361
|
|
- });
|
362
|
|
- }
|
363
|
|
- } else {
|
364
|
|
- this.flag = true;
|
365
|
|
- uni.navigateTo({
|
366
|
|
- url: `../scanning_djEnd/scanning_djEnd?type=${
|
367
|
|
- this.tabType
|
368
|
|
- }&type1=${res.type}&code=${this.code}&dept=${
|
369
|
|
- res.dept
|
370
|
|
- }&ids=${encodeURIComponent(
|
371
|
|
- JSON.stringify(this.userId.ids)
|
372
|
|
- )}&model=${encodeURIComponent(JSON.stringify(res))}`,
|
373
|
|
- });
|
374
|
|
- }
|
375
|
|
- });
|
|
466
|
+ this.orderDeptHandler(true);
|
376
|
467
|
} else {
|
377
|
468
|
if (!this.SMFlag) {
|
378
|
469
|
return;
|
379
|
470
|
}
|
380
|
471
|
this.SMFlag = false;
|
381
|
|
- SM().then((ress1) => {
|
382
|
|
- uni.showLoading({
|
383
|
|
- title: "加载中",
|
384
|
|
- mask: true,
|
385
|
|
- });
|
386
|
|
- //检验二维码的有效性
|
387
|
|
- post("/dept/scanning", {
|
388
|
|
- content: ress1,
|
389
|
|
- }).then((result) => {
|
390
|
|
- this.SMFlag = true;
|
391
|
|
- if (result.state == 200 || result.state == 201) {
|
392
|
|
- let ress = result.code;
|
393
|
|
- if (ress) {
|
394
|
|
- if (this.tabType == "patientTransport") {
|
395
|
|
- type = "handleTrans";
|
396
|
|
- let data = {
|
397
|
|
- ids: this.userId.ids,
|
398
|
|
- deptCode: this.code,
|
399
|
|
- code: ress,
|
400
|
|
- };
|
401
|
|
- list = data;
|
402
|
|
- }
|
403
|
|
- if (this.tabType == "inspect") {
|
404
|
|
- type = "handleIns";
|
405
|
|
- let data = {
|
406
|
|
- ids: this.userId.ids,
|
407
|
|
- deptCode: this.code,
|
408
|
|
- code: ress,
|
409
|
|
- };
|
410
|
|
- list = data;
|
411
|
|
- }
|
412
|
|
- post("/workerOrder/" + type, list).then((res) => {
|
413
|
|
- uni.hideLoading();
|
414
|
|
- if (res.status == 200) {
|
415
|
|
- if (
|
416
|
|
- this.tabType == "inspect" ||
|
417
|
|
- this.tabType == "patientTransport"
|
418
|
|
- ) {
|
419
|
|
- if (res.ids) {
|
420
|
|
- for (var i = 0; i < this.userId.ids.length; i++) {
|
421
|
|
- if (this.userId.ids[i] == res.ids[0]) {
|
422
|
|
- this.userId.ids.splice(i, 1);
|
|
472
|
+ SM()
|
|
473
|
+ .then((ress1) => {
|
|
474
|
+ uni.showLoading({
|
|
475
|
+ title: "加载中",
|
|
476
|
+ mask: true,
|
|
477
|
+ });
|
|
478
|
+ //检验二维码的有效性
|
|
479
|
+ post("/dept/scanning", {
|
|
480
|
+ content: ress1,
|
|
481
|
+ }).then((result) => {
|
|
482
|
+ this.SMFlag = true;
|
|
483
|
+ if (result.state == 200 || result.state == 201) {
|
|
484
|
+ let ress = result.code;
|
|
485
|
+ if (ress) {
|
|
486
|
+ if (this.tabType == "patientTransport") {
|
|
487
|
+ type = "handleTrans";
|
|
488
|
+ let data = {
|
|
489
|
+ ids: this.userId.ids,
|
|
490
|
+ deptCode: this.code,
|
|
491
|
+ code: ress,
|
|
492
|
+ };
|
|
493
|
+ list = data;
|
|
494
|
+ }
|
|
495
|
+ if (this.tabType == "inspect") {
|
|
496
|
+ type = "handleIns";
|
|
497
|
+ let data = {
|
|
498
|
+ ids: this.userId.ids,
|
|
499
|
+ deptCode: this.code,
|
|
500
|
+ code: ress,
|
|
501
|
+ };
|
|
502
|
+ list = data;
|
|
503
|
+ }
|
|
504
|
+ post("/workerOrder/" + type, list).then((res) => {
|
|
505
|
+ uni.hideLoading();
|
|
506
|
+ if (res.status == 200) {
|
|
507
|
+ if (
|
|
508
|
+ this.tabType == "inspect" ||
|
|
509
|
+ this.tabType == "patientTransport"
|
|
510
|
+ ) {
|
|
511
|
+ if (res.ids) {
|
|
512
|
+ for (var i = 0; i < this.userId.ids.length; i++) {
|
|
513
|
+ if (this.userId.ids[i] == res.ids[0]) {
|
|
514
|
+ this.userId.ids.splice(i, 1);
|
|
515
|
+ }
|
423
|
516
|
}
|
424
|
517
|
}
|
|
518
|
+ uni.navigateTo({
|
|
519
|
+ url: `../scanning_djInfo/scanning_djInfo?type=${
|
|
520
|
+ this.tabType
|
|
521
|
+ }&type1=${res.type}&infoData=${res.data}&status=${
|
|
522
|
+ res.status
|
|
523
|
+ }&msg=${res.msg}&deptCode=${this.code}&dept=${
|
|
524
|
+ res.dept
|
|
525
|
+ }&ids=${encodeURIComponent(
|
|
526
|
+ JSON.stringify(this.userId.ids)
|
|
527
|
+ )}&model=${encodeURIComponent(
|
|
528
|
+ JSON.stringify(res)
|
|
529
|
+ )}`,
|
|
530
|
+ });
|
|
531
|
+ } else {
|
|
532
|
+ uni.navigateTo({
|
|
533
|
+ url: `../scanning_djEnd/scanning_djEnd?type=${
|
|
534
|
+ this.tabType
|
|
535
|
+ }&type1=${res.type}&dept=${
|
|
536
|
+ res.dept
|
|
537
|
+ }&ids=${encodeURIComponent(
|
|
538
|
+ JSON.stringify(this.userId.ids)
|
|
539
|
+ )}&model=${encodeURIComponent(
|
|
540
|
+ JSON.stringify(res)
|
|
541
|
+ )}&code=${this.code}`,
|
|
542
|
+ });
|
425
|
543
|
}
|
426
|
|
- uni.navigateTo({
|
427
|
|
- url: `../scanning_djInfo/scanning_djInfo?type=${
|
428
|
|
- this.tabType
|
429
|
|
- }&type1=${res.type}&infoData=${res.data}&status=${
|
430
|
|
- res.status
|
431
|
|
- }&msg=${res.msg}&deptCode=${this.code}&dept=${
|
432
|
|
- res.dept
|
433
|
|
- }&ids=${encodeURIComponent(
|
434
|
|
- JSON.stringify(this.userId.ids)
|
435
|
|
- )}&model=${encodeURIComponent(
|
436
|
|
- JSON.stringify(res)
|
437
|
|
- )}`,
|
438
|
|
- });
|
439
|
544
|
} else {
|
440
|
545
|
uni.navigateTo({
|
441
|
546
|
url: `../scanning_djEnd/scanning_djEnd?type=${
|
|
@@ -449,33 +554,21 @@ export default {
|
449
|
554
|
)}&code=${this.code}`,
|
450
|
555
|
});
|
451
|
556
|
}
|
452
|
|
- } else {
|
453
|
|
- uni.navigateTo({
|
454
|
|
- url: `../scanning_djEnd/scanning_djEnd?type=${
|
455
|
|
- this.tabType
|
456
|
|
- }&type1=${res.type}&dept=${
|
457
|
|
- res.dept
|
458
|
|
- }&ids=${encodeURIComponent(
|
459
|
|
- JSON.stringify(this.userId.ids)
|
460
|
|
- )}&model=${encodeURIComponent(
|
461
|
|
- JSON.stringify(res)
|
462
|
|
- )}&code=${this.code}`,
|
463
|
|
- });
|
464
|
|
- }
|
|
557
|
+ });
|
|
558
|
+ }
|
|
559
|
+ } else {
|
|
560
|
+ this.flag = true;
|
|
561
|
+ uni.hideLoading();
|
|
562
|
+ uni.showToast({
|
|
563
|
+ icon: "none",
|
|
564
|
+ title: "请求失败!",
|
465
|
565
|
});
|
466
|
566
|
}
|
467
|
|
- } else {
|
468
|
|
- this.flag = true;
|
469
|
|
- uni.hideLoading();
|
470
|
|
- uni.showToast({
|
471
|
|
- icon: "none",
|
472
|
|
- title: "请求失败!",
|
473
|
|
- });
|
474
|
|
- }
|
|
567
|
+ });
|
|
568
|
+ })
|
|
569
|
+ .catch((err) => {
|
|
570
|
+ this.SMFlag = true;
|
475
|
571
|
});
|
476
|
|
- }).catch(err=>{
|
477
|
|
- this.SMFlag = true;
|
478
|
|
- });
|
479
|
572
|
}
|
480
|
573
|
} else {
|
481
|
574
|
this.flag = true;
|