瀏覽代碼

患者陪检

seimin 2 月之前
父節點
當前提交
55fd6c0065

+ 1 - 1
components/handViewPatient/handViewPatient.vue

@@ -102,7 +102,7 @@
102 102
       },
103 103
       name: {
104 104
         type: String,
105
-        default: '患者腕带码'
105
+        default: '患者住院号'
106 106
       }
107 107
     },
108 108
     methods: {

+ 68 - 4
pages/newSendBack/sendBackPatient/sendBackPatient.vue

@@ -26,7 +26,7 @@
26 26
         <view class="btn" @click="hand_again()">手动录入</view>
27 27
       </view>
28 28
       <view class="column" v-if="patientList.length">
29
-        <view class="btn" @click="buildOrder()">建单</view>
29
+        <view class="btn" @click="scanDept()">建单</view>
30 30
       </view>
31 31
     </view>
32 32
     <!-- 手动查询患者弹窗 -->
@@ -60,6 +60,70 @@
60 60
       this.SMFlag = true;
61 61
     },
62 62
     methods: {
63
+			// 送回病房-扫描科室
64
+			scanDept() {
65
+			  if (!this.SMFlag) {
66
+			    return;
67
+			  }
68
+			  this.SMFlag = false;
69
+			  let code = "";
70
+			  SM().then((ress1) => {
71
+			    uni.showLoading({
72
+			      title: "加载中",
73
+			      mask: true,
74
+			    });
75
+			    //检验二维码的有效性
76
+			    post("/dept/scanning", {
77
+			      content: ress1,
78
+			    }).then((result) => {
79
+			      this.SMFlag = true;
80
+			      if (result.state == 200 || result.state == 201) {
81
+			        let ress = result.code;
82
+			        if (ress) {
83
+			          code = ress;
84
+			          // 科室扫描
85
+			          let postData = {
86
+			            "type": "query",
87
+			            "qrCode": code
88
+			          };
89
+			          post("/dept/scanChangeDept", postData).then((res) => {
90
+			            uni.hideLoading();
91
+			            if (res.status == 200) {
92
+			              if (res.data) {
93
+			                if(res.data.deptDTO){
94
+			                  this.currentStartDept = res.data.deptDTO;
95
+			                }else{
96
+			                  this.currentStartDept = res.data;
97
+			                }
98
+			                this.buildOrder();
99
+			              } else {
100
+			                uni.hideLoading();
101
+			                uni.showToast({
102
+			                  icon: "none",
103
+			                  title: "请扫描正确的科室码!",
104
+			                });
105
+			              }
106
+			            } else {
107
+			              uni.hideLoading();
108
+			              uni.showToast({
109
+			                icon: "none",
110
+			                title: res.msg || "接口获取数据失败!",
111
+			              });
112
+			            }
113
+			          });
114
+			        }
115
+			      } else {
116
+			        uni.hideLoading();
117
+			        uni.showToast({
118
+			          icon: "none",
119
+			          title: result.info || "接口获取数据失败!",
120
+			        });
121
+			      }
122
+			    });
123
+			  }).catch(err => {
124
+			    this.SMFlag = true;
125
+			  });
126
+			},
63 127
       // 手动查询-确认
64 128
       patientOk(data) {
65 129
         console.log(data);
@@ -89,7 +153,7 @@
89 153
       // 手动查询弹窗
90 154
       showHandViewDrugsbag() {
91 155
         this.patientModels = {
92
-          title: '填写发药单号',
156
+          title: '填写患者住院号',
93 157
           disjunctor: true,
94 158
         }
95 159
       },
@@ -119,9 +183,9 @@
119 183
                   sourceId: 4,
120 184
                   "hosId": this.hosId,
121 185
                   "startDept": {
122
-                    "id": this.queryObj.startDeptId
186
+                    "id": this.currentStartDept.id
123 187
                   },
124
-                  "createDept": this.queryObj.startDeptId,
188
+                  "createDept": this.currentStartDept.id,
125 189
                   "patient": {
126 190
                     "patientCode": v.patientCode
127 191
                   },

+ 20 - 20
pages/scanning_ins/scanning_ins.vue

@@ -557,6 +557,14 @@
557 557
 			},
558 558
       // 送回病房-扫描科室
559 559
       scanDept(type = '') {
560
+				if(type === 'all'){
561
+				  // 批量送回
562
+				  let infoDATA = JSON.parse(this.options.infoDATA);
563
+				  uni.navigateTo({
564
+				    url: `/pages/newSendBack/sendBackPatient/sendBackPatient?patientId=${infoDATA.id}&patientName=${infoDATA.patientName}&patientResidenceNo=${infoDATA.residenceNo}&patientCode=${infoDATA.patientCode}`,
565
+				  });
566
+					return;
567
+				}
560 568
         this.isInspectAndPatientTransform = false;
561 569
         if (!this.SMFlag) {
562 570
           return;
@@ -592,24 +600,16 @@
592 600
                       }else{
593 601
                         this.currentStartDept = res.data;
594 602
                       }
595
-                      if(type === 'all'){
596
-                        // 批量送回
597
-                        console.log('批量送回');
598
-                        uni.navigateTo({
599
-                          url: `/pages/newSendBack/sendBackPatient/sendBackPatient?patientId=${infoDATA.id}&patientName=${infoDATA.patientName}&patientResidenceNo=${infoDATA.residenceNo}&patientCode=${infoDATA.patientCode}&startDeptId=${this.currentStartDept.id}`,
600
-                        });
601
-                      }else{
602
-                        this.models3 = {
603
-                          disjunctor: true,
604
-                          title: "提示",
605
-                          content: `您选择的起点科室为【${this.currentStartDept.dept}】,您将从【${this.currentStartDept.dept}】把【${infoDATA.patientName}】送回【${infoDATA.department.dept}】,如您确认请点击“确认建单”。`,
606
-                          icon: "warn",
607
-                          operate: {
608
-                            ok: "确认建单",
609
-                            cancel: "取消",
610
-                          },
611
-                        };
612
-                      }
603
+                      this.models3 = {
604
+                        disjunctor: true,
605
+                        title: "提示",
606
+                        content: `您选择的起点科室为【${this.currentStartDept.dept}】,您将从【${this.currentStartDept.dept}】把【${infoDATA.patientName}】送回【${infoDATA.department.dept}】,如您确认请点击“确认建单”。`,
607
+                        icon: "warn",
608
+                        operate: {
609
+                          ok: "确认建单",
610
+                          cancel: "取消",
611
+                        },
612
+                      };
613 613
                     } else {
614 614
                       uni.hideLoading();
615 615
                       uni.showToast({
@@ -1073,7 +1073,7 @@
1073 1073
       padding: 0 20rpx;
1074 1074
 
1075 1075
       .Scanning_top {
1076
-        height: 400rpx;
1076
+        // height: 500rpx;
1077 1077
 
1078 1078
         .Scanning_top_icon {
1079 1079
           width: 140rpx;
@@ -1135,7 +1135,7 @@
1135 1135
       }
1136 1136
 
1137 1137
       .page_items {
1138
-        margin-bottom: 110rpx;
1138
+        padding-bottom: 200rpx;
1139 1139
 
1140 1140
         .zwsj {
1141 1141
           margin-top: 180rpx;