浏览代码

患者信息修改

maotao 6 月之前
父节点
当前提交
4099032e3b

+ 2 - 1
components/smallScreen/smallScreen.vue

@@ -157,7 +157,6 @@
157
         if (this.currentCode) {
157
         if (this.currentCode) {
158
           let gdStateValue = data.gdState.value; //工单状态value
158
           let gdStateValue = data.gdState.value; //工单状态value
159
           let associationTypeValue = data.taskType.associationType.value; //关联类型value
159
           let associationTypeValue = data.taskType.associationType.value; //关联类型value
160
-          
161
           // 患者陪检,并且工单状态是待到达
160
           // 患者陪检,并且工单状态是待到达
162
           if (
161
           if (
163
             gdStateValue == "4" &&
162
             gdStateValue == "4" &&
@@ -222,10 +221,12 @@
222
             console.log(this.selectRadio)
221
             console.log(this.selectRadio)
223
             list.inspectMode = this.selectRadio.length > 0 ? this.selectRadio[0] : undefined;
222
             list.inspectMode = this.selectRadio.length > 0 ? this.selectRadio[0] : undefined;
224
           }
223
           }
224
+					console.log('type=====>',type)
225
           post("/workerOrder/" + type, list).then((res) => {
225
           post("/workerOrder/" + type, list).then((res) => {
226
             uni.hideLoading();
226
             uni.hideLoading();
227
             if (res) {
227
             if (res) {
228
               if (res.status == 200) {
228
               if (res.status == 200) {
229
+								
229
                 if (gdStateValue == "4" && associationTypeValue == "other") {
230
                 if (gdStateValue == "4" && associationTypeValue == "other") {
230
                   uni.navigateTo({
231
                   uni.navigateTo({
231
                     url: `../../pages/scanning_code/scanning_code?type=${associationTypeValue}&type1=${res.type}&id=${data.id}&deptCode=${code}&dept=${res.dept}&accountObj=${encodeURIComponent(JSON.stringify(accountObj))}`,
232
                     url: `../../pages/scanning_code/scanning_code?type=${associationTypeValue}&type1=${res.type}&id=${data.id}&deptCode=${code}&dept=${res.dept}&accountObj=${encodeURIComponent(JSON.stringify(accountObj))}`,

+ 2 - 2
manifest.json

@@ -73,9 +73,9 @@
73
         "router" : {
73
         "router" : {
74
             // 正常打包目录
74
             // 正常打包目录
75
             "base" : "/app/"
75
             "base" : "/app/"
76
-            // 宜昌打包目录
77
-            // "base" : "/dstechbh/app/"
78
         },
76
         },
77
+        // 宜昌打包目录
78
+        // "base" : "/dstechbh/app/"
79
         "optimization" : {
79
         "optimization" : {
80
             "treeShaking" : {
80
             "treeShaking" : {
81
                 "enable" : true
81
                 "enable" : true

+ 15 - 22
pages/receipt_infopage/receipt_infopage.vue

@@ -137,6 +137,19 @@
137
             infoDATA.taskType.associationType.value == 'inspect' ||
137
             infoDATA.taskType.associationType.value == 'inspect' ||
138
             infoDATA.taskType.associationType.value == 'patientTransport'
138
             infoDATA.taskType.associationType.value == 'patientTransport'
139
           ">
139
           ">
140
+          <text class="text1" v-if="infoDATA.patient.residenceNo">床号</text>
141
+          <text class="text2" v-if="infoDATA.patient.residenceNo">{{
142
+            infoDATA.patient ? infoDATA.patient.bedNum : "-"
143
+          }}</text>
144
+					<text class="text1" v-if="!infoDATA.patient.residenceNo">身份证号</text>
145
+					<text class="text2" v-if="!infoDATA.patient.residenceNo">{{
146
+					  infoDATA.patient ? infoDATA.patient.identityCardNo : "-"
147
+					}}</text>
148
+        </view>
149
+        <view class="page_item_foot_text" v-if="
150
+            infoDATA.taskType.associationType.value == 'inspect' ||
151
+            infoDATA.taskType.associationType.value == 'patientTransport'
152
+          ">
140
           <text class="text1">携带设备</text>
153
           <text class="text1">携带设备</text>
141
           <text class="text2">{{ infoDATA.goods || "暂无" }}</text>
154
           <text class="text2">{{ infoDATA.goods || "暂无" }}</text>
142
         </view>
155
         </view>
@@ -155,8 +168,8 @@
155
           <text class="text2">{{ infoDATA.patient.patientName }}
168
           <text class="text2">{{ infoDATA.patient.patientName }}
156
 						<text v-if="infoDATA.patient.residenceNo">
169
 						<text v-if="infoDATA.patient.residenceNo">
157
 							({{
170
 							({{
158
-									infoDATA.patient.residenceNo
159
-								}})
171
+							    infoDATA.patient.residenceNo
172
+							  }})
160
 						</text>
173
 						</text>
161
 						<text v-if="!infoDATA.patient.residenceNo">
174
 						<text v-if="!infoDATA.patient.residenceNo">
162
 							({{
175
 							({{
@@ -165,26 +178,6 @@
165
 						</text>
178
 						</text>
166
 					</text>
179
 					</text>
167
         </view>
180
         </view>
168
-				<view class="page_item_foot_text" v-if="
169
-						infoDATA.patient.residenceNo && (
170
-						infoDATA.taskType.associationType.value == 'inspect' ||
171
-						infoDATA.taskType.associationType.value == 'patientTransport')
172
-				  ">
173
-				  <text class="text1">床号</text>
174
-				  <text class="text2">{{
175
-				    infoDATA.patient ? infoDATA.patient.bedNum : "-"
176
-				  }}</text>
177
-				</view>
178
-				<view class="page_item_foot_text" v-if="
179
-						!infoDATA.patient.residenceNo && (
180
-						infoDATA.taskType.associationType.value == 'inspect' ||
181
-						infoDATA.taskType.associationType.value == 'patientTransport')
182
-				  ">
183
-				  <text class="text1">身份证号</text>
184
-				  <text class="text2">{{
185
-				    infoDATA.patient ? infoDATA.patient.identityCardNo : "-"
186
-				  }}</text>
187
-				</view>
188
         <view class="page_item_foot_text" v-if="
181
         <view class="page_item_foot_text" v-if="
189
             (infoDATA.taskType.associationType.value == 'inspect' ||
182
             (infoDATA.taskType.associationType.value == 'inspect' ||
190
             infoDATA.taskType.associationType.value == 'patientTransport')&&infoDATA.patient.careLevel
183
             infoDATA.taskType.associationType.value == 'patientTransport')&&infoDATA.patient.careLevel

+ 5 - 11
pages/scanning_Result/scanning_Result.vue

@@ -69,21 +69,15 @@
69
         (res.status == 200 && type == 'inspect') || type == 'patientTransport'
69
         (res.status == 200 && type == 'inspect') || type == 'patientTransport'
70
       ">
70
       ">
71
       <view v-if="res.patient"> 患者姓名 : {{ res.patient || "-" }} </view>
71
       <view v-if="res.patient"> 患者姓名 : {{ res.patient || "-" }} </view>
72
-      <view v-if="infoDATA.patientResidenceNo">
73
-        住院号 : {{ infoDATA.patientResidenceNo || "-" }}
72
+      <view v-if="res.residenceNo">
73
+        住院号 : {{ res.residenceNo || "-" }}
74
       </view>
74
       </view>
75
-			<view v-if="!infoDATA.patientResidenceNo">
76
-			  就诊卡号 : {{ infoDATA.patientCardNo || "-" }}
77
-			</view>
78
       <view v-if="res.deptName">
75
       <view v-if="res.deptName">
79
         住院科室 : {{ res.deptName !== "undefined" ? res.deptName : "-" }}
76
         住院科室 : {{ res.deptName !== "undefined" ? res.deptName : "-" }}
80
       </view>
77
       </view>
81
-      <view v-if="infoDATA.patientResidenceNo">
82
-        床号 : {{ infoDATA.bedNum ? infoDATA.bedNum : "-" }}
78
+      <view v-if="res.bedNum">
79
+        床号 : {{ res.bedNum !== "undefined" ? res.bedNum : "-" }}
83
       </view>
80
       </view>
84
-			<view v-if="!infoDATA.patientResidenceNo">
85
-			  身份证号 : {{ infoDATA.patientIdentityCardNo || "-" }}
86
-			</view>
87
       <view v-if="res.data">
81
       <view v-if="res.data">
88
         检查项目 :
82
         检查项目 :
89
         <text v-for="(data, i) in res.data" :key="i">{{
83
         <text v-for="(data, i) in res.data" :key="i">{{
@@ -950,7 +944,7 @@
950
       this.RESData = options.resData;
944
       this.RESData = options.resData;
951
       this.res["status"] = options.status;
945
       this.res["status"] = options.status;
952
       this.res["msg"] = options.msg;
946
       this.res["msg"] = options.msg;
953
-      console.log('hahhaha',options.patient);
947
+      console.log(options.patient);
954
       this.res["patient"] = options.patient;
948
       this.res["patient"] = options.patient;
955
       this.res["patientCode"] = options.patientCode;
949
       this.res["patientCode"] = options.patientCode;
956
       this.res["deptName"] = options.deptName;
950
       this.res["deptName"] = options.deptName;

+ 3 - 30
pages/scanning_code/scanning_code.vue

@@ -177,37 +177,10 @@
177
             infoDATA.taskType.associationType.value == 'patientTransport'
177
             infoDATA.taskType.associationType.value == 'patientTransport'
178
           ">
178
           ">
179
           <text class="text1">患者姓名</text>
179
           <text class="text1">患者姓名</text>
180
-          <text class="text2">{{ infoDATA.patient.patientName }}
181
-						<text v-if="infoDATA.patient.residenceNo">
182
-							({{
183
-							    infoDATA.patient.residenceNo
184
-							  }})
185
-						</text>
186
-						<text v-if="!infoDATA.patient.residenceNo">
187
-							({{
188
-							    infoDATA.patient.cardNo
189
-							  }})
190
-						</text>
191
-					</text>
180
+          <text class="text2">{{ infoDATA.patient.patientName }}({{
181
+              infoDATA.patient.residenceNo
182
+            }})</text>
192
         </view>
183
         </view>
193
-				<view class="page_item_foot_text" v-if="
194
-						!infoDATA.patient.residenceNo && 
195
-						(infoDATA.taskType.associationType.value == 'inspect' ||
196
-				    infoDATA.taskType.associationType.value == 'patientTransport')
197
-				  ">
198
-				  <text class="text1">身份证号</text>
199
-				  <text class="text2">{{ infoDATA.patient.identityCardNo }}
200
-					</text>
201
-				</view>
202
-				<view class="page_item_foot_text" v-if="
203
-						infoDATA.patient.residenceNo && 
204
-						(infoDATA.taskType.associationType.value == 'inspect' ||
205
-				    infoDATA.taskType.associationType.value == 'patientTransport')
206
-				  ">
207
-				  <text class="text1">床位</text>
208
-				  <text class="text2">{{ infoDATA.patient.bedNum }}
209
-					</text>
210
-				</view>
211
       </view>
184
       </view>
212
       <!-- 药包 -->
185
       <!-- 药包 -->
213
       <view class="page_item_info" v-if="infoDATA.taskType.associationType.value == 'drugsBag'">
186
       <view class="page_item_info" v-if="infoDATA.taskType.associationType.value == 'drugsBag'">

+ 13 - 7
pages/scanning_ins/scanning_ins.vue

@@ -29,7 +29,7 @@
29
           </view>
29
           </view>
30
           <view v-if="infoDATA.residenceNo">住院号 : {{ infoDATA.residenceNo || "-" }}</view>
30
           <view v-if="infoDATA.residenceNo">住院号 : {{ infoDATA.residenceNo || "-" }}</view>
31
 					<view v-if="!infoDATA.residenceNo">身份证号 : {{ infoDATA.identityCardNo || "-" }}</view>
31
 					<view v-if="!infoDATA.residenceNo">身份证号 : {{ infoDATA.identityCardNo || "-" }}</view>
32
-          <view>住院科室 :
32
+          <view v-if="infoDATA.residenceNo">住院科室 :
33
             {{ infoDATA.department ? infoDATA.department.dept : "-" }}
33
             {{ infoDATA.department ? infoDATA.department.dept : "-" }}
34
           </view>
34
           </view>
35
         </view>
35
         </view>
@@ -209,11 +209,11 @@
209
 
209
 
210
       <view class="foot_btn2" v-if="workData && workData.length > 0 && isShow">
210
       <view class="foot_btn2" v-if="workData && workData.length > 0 && isShow">
211
         <!-- <view class="btn1" @click="allStart(typeData)">一键操作</view> -->
211
         <!-- <view class="btn1" @click="allStart(typeData)">一键操作</view> -->
212
-        <view class="btn1" @click="getInspectAndPatientTransform(typeData)">一键操作</view>
212
+        <view class="btn1" :class="(!infoDATA.residenceNo && addService==0)?'btn5':''" @click="getInspectAndPatientTransform(typeData)">一键操作</view>
213
         <!-- <view class="btn1" @click="scanDept()">送回病房</view> -->
213
         <!-- <view class="btn1" @click="scanDept()">送回病房</view> -->
214
-				<view class="btn3" v-if="infoDATA.residenceNo" @click="scanDept()">送回病房</view>
215
-				<view class="btn3" v-if="!infoDATA.residenceNo && addService==1" @click="additional()">追加服务</view>
216
-        <view class="btn2" @click="showAlert">知道了</view>
214
+				<view class="btn1" v-if="infoDATA.residenceNo" @click="scanDept()">送回病房</view>
215
+				<view class="btn1" v-if="!infoDATA.residenceNo && addService==1" @click="additional()">追加服务</view>
216
+        <view class="btn2" :class="(!infoDATA.residenceNo && addService==0)?'btn5':''" @click="showAlert">知道了</view>
217
       </view>
217
       </view>
218
       <!-- <view class="foot_btn2" v-if="
218
       <!-- <view class="foot_btn2" v-if="
219
           workData && workData.length === 0 && isShow && wechatFocusSwitch == 1
219
           workData && workData.length === 0 && isShow && wechatFocusSwitch == 1
@@ -226,12 +226,12 @@
226
         }}</view> -->
226
         }}</view> -->
227
         <view class="btn3" v-if="infoDATA.residenceNo" @click="scanDept()">送回病房</view>
227
         <view class="btn3" v-if="infoDATA.residenceNo" @click="scanDept()">送回病房</view>
228
 				<view class="btn3" v-if="!infoDATA.residenceNo && addService==1" @click="additional()">追加服务</view>
228
 				<view class="btn3" v-if="!infoDATA.residenceNo && addService==1" @click="additional()">追加服务</view>
229
-        <view class="btn3" @click="showAlert">知道了</view>
229
+        <view class="btn3" :class="(!infoDATA.residenceNo && addService==0)?'btn4':''" @click="showAlert">知道了</view>
230
       </view>
230
       </view>
231
       <view class="foot_btn2" v-if="!isShow">
231
       <view class="foot_btn2" v-if="!isShow">
232
 				<view class="btn3" v-if="infoDATA.residenceNo" @click="scanDept()">送回病房</view>
232
 				<view class="btn3" v-if="infoDATA.residenceNo" @click="scanDept()">送回病房</view>
233
 				<view class="btn3" v-if="!infoDATA.residenceNo && addService==1" @click="additional()">追加服务</view>
233
 				<view class="btn3" v-if="!infoDATA.residenceNo && addService==1" @click="additional()">追加服务</view>
234
-        <view class="btn3" @click="showAlert">知道了</view>
234
+        <view class="btn3" :class="(!infoDATA.residenceNo && addService==0)?'btn4':''" @click="showAlert">知道了</view>
235
       </view>
235
       </view>
236
     </view>
236
     </view>
237
     <!-- 弹窗 -->
237
     <!-- 弹窗 -->
@@ -1463,6 +1463,12 @@
1463
           margin-top: 16rpx;
1463
           margin-top: 16rpx;
1464
           text-align: center;
1464
           text-align: center;
1465
         }
1465
         }
1466
+				.btn4{
1467
+					width: 100% !important;
1468
+				}
1469
+				.btn5{
1470
+					width: 48% !important;
1471
+				}
1466
       }
1472
       }
1467
     }
1473
     }
1468
   }
1474
   }