|
@@ -277,8 +277,9 @@
|
277
|
277
|
<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>
|
278
|
278
|
<!-- 其他临床服务-拍照 -->
|
279
|
279
|
<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>
|
280
|
|
-
|
281
|
280
|
<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>
|
|
281
|
+ <!-- 其他临床服务-追加 -->
|
|
282
|
+ <view v-if="item.taskType.associationType.value == 'other' && item.worker && item.worker.id && clinicalMultiplayerMode === 1 && showAppendUser === 1 && item.clinicalTaskIdsFlag" class="page_item_btn" @click="additionalUser(item)" hover-class="seimin-btn-hover">追加</view>
|
282
|
283
|
</view>
|
283
|
284
|
<view class="page_item_btn" v-if="selectedLabelSlots == '待接单'" @click="showAlerts(item)" hover-class="seimin-btn-hover">接单</view>
|
284
|
285
|
</view>
|
|
@@ -315,6 +316,10 @@
|
315
|
316
|
<selectAccount v-if="hosModels.disjunctor" :title="hosModels.title" :disjunctor="hosModels.disjunctor" @ok="hosOk"
|
316
|
317
|
@cancel="hosCancel">
|
317
|
318
|
</selectAccount>
|
|
319
|
+ <!-- 手动查询弹窗 -->
|
|
320
|
+ <checkboxModal v-if="checkboxModels.disjunctor" :content="checkboxModels.content" :disjunctor="checkboxModels.disjunctor"
|
|
321
|
+ @ok="checkboxOk" @cancel="checkboxCancel">
|
|
322
|
+ </checkboxModal>
|
318
|
323
|
</view>
|
319
|
324
|
</template>
|
320
|
325
|
<script>
|
|
@@ -338,6 +343,19 @@
|
338
|
343
|
export default {
|
339
|
344
|
data() {
|
340
|
345
|
return {
|
|
346
|
+ otherAssociationTypeId: null,
|
|
347
|
+ hosId: uni.getStorageSync('userData').user.currentHospital.id,
|
|
348
|
+ clinicalMultiplayerMode: 0,
|
|
349
|
+ showAppendUser: 0,
|
|
350
|
+ clinicalTaskIds: [],
|
|
351
|
+ other: {
|
|
352
|
+ user: {},
|
|
353
|
+ data: {},
|
|
354
|
+ },
|
|
355
|
+ // 手动查询弹窗model
|
|
356
|
+ checkboxModels: {
|
|
357
|
+ disjunctor: false,
|
|
358
|
+ },
|
341
|
359
|
// 填写交接人账号弹窗model
|
342
|
360
|
hosModels: {
|
343
|
361
|
disjunctor: false,
|
|
@@ -460,6 +478,219 @@
|
460
|
478
|
selectAccount,
|
461
|
479
|
},
|
462
|
480
|
methods: {
|
|
481
|
+ async initList(){
|
|
482
|
+ uni.showLoading({
|
|
483
|
+ title: "加载中",
|
|
484
|
+ mask: true,
|
|
485
|
+ });
|
|
486
|
+ //获取其他临床服务业务类型
|
|
487
|
+ let res = await this.getOtherAssociationTypes();
|
|
488
|
+ let otherAssociationType = res.find(v => v.value === 'other');
|
|
489
|
+ this.otherAssociationTypeId = otherAssociationType ? otherAssociationType.id : null;
|
|
490
|
+ if(this.otherAssociationTypeId){
|
|
491
|
+ // 获取临床服务页面控制开关
|
|
492
|
+ let result = await this.getTaskOtherConfig();
|
|
493
|
+ if (result.status == 200) {
|
|
494
|
+ if(result.list && result.list[0]){
|
|
495
|
+ this.clinicalMultiplayerMode = result.list[0].clinicalMultiplayerMode;
|
|
496
|
+ this.showAppendUser = result.list[0].showAppendUser;
|
|
497
|
+ this.clinicalTaskIds = result.list[0].clinicalTaskIds ? result.list[0].clinicalTaskIds.split(',') : [] ;
|
|
498
|
+ }else{
|
|
499
|
+ this.clinicalMultiplayerMode = 0;
|
|
500
|
+ this.showAppendUser = 0;
|
|
501
|
+ }
|
|
502
|
+ } else {
|
|
503
|
+ this.clinicalMultiplayerMode = 0;
|
|
504
|
+ this.showAppendUser = 0;
|
|
505
|
+ }
|
|
506
|
+ }else{
|
|
507
|
+ uni.showToast({
|
|
508
|
+ icon: 'none',
|
|
509
|
+ title: '未设置其他临床服务业务类型!'
|
|
510
|
+ })
|
|
511
|
+ }
|
|
512
|
+
|
|
513
|
+ this.waitingOrdersGetNum();
|
|
514
|
+ this.executingOrders(0);
|
|
515
|
+ },
|
|
516
|
+ //获取其他临床服务业务类型
|
|
517
|
+ getOtherAssociationTypes(){
|
|
518
|
+ return post('/common/common/getDictionary', {
|
|
519
|
+ "type": "list",
|
|
520
|
+ "key": "association_types"
|
|
521
|
+ });
|
|
522
|
+ },
|
|
523
|
+ // 获取临床服务页面控制开关
|
|
524
|
+ getTaskOtherConfig(){
|
|
525
|
+ return post("/simple/data/fetchDataList/taskTypeConfig", {
|
|
526
|
+ "idx": 0,
|
|
527
|
+ "sum": 10,
|
|
528
|
+ "taskTypeConfig": {
|
|
529
|
+ "hosId": this.hosId,
|
|
530
|
+ "associationType": this.otherAssociationTypeId,
|
|
531
|
+ }
|
|
532
|
+ });
|
|
533
|
+ },
|
|
534
|
+ // 手动查询-确认
|
|
535
|
+ checkboxOk(bulkCopy) {
|
|
536
|
+ console.log(bulkCopy);
|
|
537
|
+ this.checkboxModels.disjunctor = false;
|
|
538
|
+ let { user, data } = this.other;
|
|
539
|
+ this.additionalUserCommon(user, data.id, data.worker.id, bulkCopy);
|
|
540
|
+ },
|
|
541
|
+ // 手动查询-取消
|
|
542
|
+ checkboxCancel() {
|
|
543
|
+ this.checkboxModels.disjunctor = false;
|
|
544
|
+ },
|
|
545
|
+ // 手动查询弹窗
|
|
546
|
+ showCheckboxModal(user, data) {
|
|
547
|
+ this.other = {
|
|
548
|
+ user,
|
|
549
|
+ data,
|
|
550
|
+ };
|
|
551
|
+ this.checkboxModels = {
|
|
552
|
+ content: `您要最追加的人员为${user.name},您确认要追加吗?`,
|
|
553
|
+ disjunctor: true,
|
|
554
|
+ }
|
|
555
|
+ },
|
|
556
|
+ // 追加陪检人/执行人按钮
|
|
557
|
+ additionalUser(data) {
|
|
558
|
+ if (!this.SMFlag) {
|
|
559
|
+ return;
|
|
560
|
+ }
|
|
561
|
+ this.SMFlag = false;
|
|
562
|
+ console.log(data, 'data');
|
|
563
|
+ SM().then((ress1) => {
|
|
564
|
+ uni.showLoading({
|
|
565
|
+ title: "加载中",
|
|
566
|
+ mask: true,
|
|
567
|
+ });
|
|
568
|
+ //检验二维码的有效性
|
|
569
|
+ post("/dept/scanning", {
|
|
570
|
+ content: ress1,
|
|
571
|
+ taskTypeId: data.taskType.id,
|
|
572
|
+ gdState: data.gdState.id,
|
|
573
|
+ }).then((result) => {
|
|
574
|
+ this.SMFlag = true;
|
|
575
|
+ // this.currentCode = result.code;
|
|
576
|
+ if (result.state == 200 || result.state == 201) {
|
|
577
|
+ console.log(result);
|
|
578
|
+ let user;
|
|
579
|
+ try{
|
|
580
|
+ // json对象字符串
|
|
581
|
+ user = JSON.parse(result.code);
|
|
582
|
+ // 不是json对象字符串
|
|
583
|
+ if(Object.prototype.toString.call(user).slice(8, -1).toLowerCase() !== 'object'){
|
|
584
|
+ user = result.code;
|
|
585
|
+ }
|
|
586
|
+ }catch(e){
|
|
587
|
+ user = result.code;
|
|
588
|
+ }
|
|
589
|
+ if(Object.prototype.toString.call(user).slice(8, -1).toLowerCase() === 'object' && user.type == 'myQrCode' && user.id && user.name){
|
|
590
|
+ user.qrcode = ress1;
|
|
591
|
+ uni.hideLoading();
|
|
592
|
+ if(data.taskType.associationType.value == 'other'){
|
|
593
|
+ this.showCheckboxModal(user, data);
|
|
594
|
+ }else{
|
|
595
|
+ uni.showModal({
|
|
596
|
+ title: "提示",
|
|
597
|
+ content: `您要最追加的人员为${user.name},您确认要追加吗?`,
|
|
598
|
+ success: (res) => {
|
|
599
|
+ if (res.confirm) {
|
|
600
|
+ console.log("用户点击确定");
|
|
601
|
+ this.additionalUserCommon(user, data.id, data.worker.id, false);
|
|
602
|
+ } else if (res.cancel) {
|
|
603
|
+ console.log("用户点击取消");
|
|
604
|
+ }
|
|
605
|
+ },
|
|
606
|
+ });
|
|
607
|
+ }
|
|
608
|
+ }else if(Object.prototype.toString.call(user).slice(8, -1).toLowerCase() === 'string'){
|
|
609
|
+ let identityCardNumber = user;
|
|
610
|
+ // 根据身份证获取name
|
|
611
|
+ // todo
|
|
612
|
+ post("/data/fetchDataList/user", {idx: 0, sum: 1, user: { identityCardNumber }}).then((result) => {
|
|
613
|
+ uni.hideLoading();
|
|
614
|
+ if(result.status == 200){
|
|
615
|
+ result.list = result.list || [];
|
|
616
|
+ if(result.list.length){
|
|
617
|
+ let user = {name: result.list[0].name, identityCardNumber, qrcode: ress1};
|
|
618
|
+ if(data.taskType.associationType.value == 'other'){
|
|
619
|
+ this.showCheckboxModal(user, data);
|
|
620
|
+ }else{
|
|
621
|
+ uni.showModal({
|
|
622
|
+ title: "提示",
|
|
623
|
+ content: `您要最追加的人员为${user.name},您确认要追加吗?`,
|
|
624
|
+ success: (res) => {
|
|
625
|
+ if (res.confirm) {
|
|
626
|
+ console.log("用户点击确定");
|
|
627
|
+ this.additionalUserCommon(user, data.id, data.worker.id, false);
|
|
628
|
+ } else if (res.cancel) {
|
|
629
|
+ console.log("用户点击取消");
|
|
630
|
+ }
|
|
631
|
+ },
|
|
632
|
+ });
|
|
633
|
+ }
|
|
634
|
+ }else{
|
|
635
|
+ uni.navigateTo({
|
|
636
|
+ url: `../result_error/result_error?qrcode=${ress1}&msg=扫描二维码无法找到用户!`,
|
|
637
|
+ });
|
|
638
|
+ }
|
|
639
|
+ }else{
|
|
640
|
+ uni.navigateTo({
|
|
641
|
+ url: `../result_error/result_error?qrcode=${ress1}&msg=请扫描正确的二维码!`,
|
|
642
|
+ });
|
|
643
|
+ }
|
|
644
|
+ })
|
|
645
|
+ }else{
|
|
646
|
+ uni.hideLoading();
|
|
647
|
+ uni.navigateTo({
|
|
648
|
+ url: `../result_error/result_error?qrcode=${ress1}&msg=请扫描正确的二维码!`,
|
|
649
|
+ });
|
|
650
|
+ }
|
|
651
|
+ } else {
|
|
652
|
+ uni.hideLoading();
|
|
653
|
+ uni.navigateTo({
|
|
654
|
+ url: `../result_error/result_error?qrcode=${ress1}&msg=接口获取数据失败!`,
|
|
655
|
+ });
|
|
656
|
+ }
|
|
657
|
+ });
|
|
658
|
+ }).catch(err=>{
|
|
659
|
+ this.SMFlag = true;
|
|
660
|
+ });
|
|
661
|
+ },
|
|
662
|
+ // 追加陪检人/执行人
|
|
663
|
+ additionalUserCommon(user, gdId, workerId, bulkCopy) {
|
|
664
|
+ console.log(user, gdId, workerId, bulkCopy);
|
|
665
|
+ uni.showLoading({
|
|
666
|
+ title: "加载中",
|
|
667
|
+ mask: true,
|
|
668
|
+ });
|
|
669
|
+ // 二维码里有id则传userid,没有则传identityCardNumber
|
|
670
|
+ post("/workerOrder/additionalAccompanyingPersonnel", {
|
|
671
|
+ userId: user.id || undefined,
|
|
672
|
+ identityCardNumber: !user.id ? user.identityCardNumber : undefined,
|
|
673
|
+ gdId,
|
|
674
|
+ workerId,
|
|
675
|
+ bulkCopy: bulkCopy ? 1 : undefined,
|
|
676
|
+ }).then((result) => {
|
|
677
|
+ uni.hideLoading();
|
|
678
|
+ if (result.state == 200) {
|
|
679
|
+ uni.showToast({
|
|
680
|
+ icon: 'none',
|
|
681
|
+ duration: 4000,
|
|
682
|
+ title: '操作成功!'
|
|
683
|
+ })
|
|
684
|
+ uni.redirectTo({
|
|
685
|
+ url: `../receiptpage/receiptpage`,
|
|
686
|
+ });
|
|
687
|
+ } else {
|
|
688
|
+ uni.navigateTo({
|
|
689
|
+ url: `../result_error/result_error?qrcode=${user.qrcode}&msg=${result.msg || '接口获取数据失败!'}`,
|
|
690
|
+ });
|
|
691
|
+ }
|
|
692
|
+ });
|
|
693
|
+ },
|
463
|
694
|
// 前往其他临床服务完成工单确认页面
|
464
|
695
|
otherCompleteOrder(data){
|
465
|
696
|
console.log(data);
|
|
@@ -1249,6 +1480,10 @@
|
1249
|
1480
|
this.triggered = false;
|
1250
|
1481
|
this.freshing = true;
|
1251
|
1482
|
this.totalNum = res.data.resultCount;
|
|
1483
|
+ res.data.data = res.data.data || [];
|
|
1484
|
+ res.data.data.forEach(v => {
|
|
1485
|
+ v.clinicalTaskIdsFlag = this.clinicalTaskIds.includes(v.taskType.id.toString());
|
|
1486
|
+ })
|
1252
|
1487
|
if (idx === 0) {
|
1253
|
1488
|
this.zxzData = res.data.data;
|
1254
|
1489
|
} else {
|
|
@@ -1426,8 +1661,7 @@
|
1426
|
1661
|
// });
|
1427
|
1662
|
// #endif
|
1428
|
1663
|
this.selectedLabelSlots = "执行中";
|
1429
|
|
- this.waitingOrdersGetNum();
|
1430
|
|
- this.executingOrders(0);
|
|
1664
|
+ this.initList();
|
1431
|
1665
|
// #ifdef APP-PLUS
|
1432
|
1666
|
webHandle("no", "app");
|
1433
|
1667
|
// #endif
|