maotao месяцев назад: 6
Родитель
Сommit
4099032e3b

+ 2 - 1
components/smallScreen/smallScreen.vue

@@ -157,7 +157,6 @@
157 157
         if (this.currentCode) {
158 158
           let gdStateValue = data.gdState.value; //工单状态value
159 159
           let associationTypeValue = data.taskType.associationType.value; //关联类型value
160
-          
161 160
           // 患者陪检,并且工单状态是待到达
162 161
           if (
163 162
             gdStateValue == "4" &&
@@ -222,10 +221,12 @@
222 221
             console.log(this.selectRadio)
223 222
             list.inspectMode = this.selectRadio.length > 0 ? this.selectRadio[0] : undefined;
224 223
           }
224
+					console.log('type=====>',type)
225 225
           post("/workerOrder/" + type, list).then((res) => {
226 226
             uni.hideLoading();
227 227
             if (res) {
228 228
               if (res.status == 200) {
229
+								
229 230
                 if (gdStateValue == "4" && associationTypeValue == "other") {
230 231
                   uni.navigateTo({
231 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 73
         "router" : {
74 74
             // 正常打包目录
75 75
             "base" : "/app/"
76
-            // 宜昌打包目录
77
-            // "base" : "/dstechbh/app/"
78 76
         },
77
+        // 宜昌打包目录
78
+        // "base" : "/dstechbh/app/"
79 79
         "optimization" : {
80 80
             "treeShaking" : {
81 81
                 "enable" : true

+ 15 - 22
pages/receipt_infopage/receipt_infopage.vue

@@ -137,6 +137,19 @@
137 137
             infoDATA.taskType.associationType.value == 'inspect' ||
138 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 153
           <text class="text1">携带设备</text>
141 154
           <text class="text2">{{ infoDATA.goods || "暂无" }}</text>
142 155
         </view>
@@ -155,8 +168,8 @@
155 168
           <text class="text2">{{ infoDATA.patient.patientName }}
156 169
 						<text v-if="infoDATA.patient.residenceNo">
157 170
 							({{
158
-									infoDATA.patient.residenceNo
159
-								}})
171
+							    infoDATA.patient.residenceNo
172
+							  }})
160 173
 						</text>
161 174
 						<text v-if="!infoDATA.patient.residenceNo">
162 175
 							({{
@@ -165,26 +178,6 @@
165 178
 						</text>
166 179
 					</text>
167 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 181
         <view class="page_item_foot_text" v-if="
189 182
             (infoDATA.taskType.associationType.value == 'inspect' ||
190 183
             infoDATA.taskType.associationType.value == 'patientTransport')&&infoDATA.patient.careLevel

+ 5 - 11
pages/scanning_Result/scanning_Result.vue

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

+ 3 - 30
pages/scanning_code/scanning_code.vue

@@ -177,37 +177,10 @@
177 177
             infoDATA.taskType.associationType.value == 'patientTransport'
178 178
           ">
179 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 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 184
       </view>
212 185
       <!-- 药包 -->
213 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 29
           </view>
30 30
           <view v-if="infoDATA.residenceNo">住院号 : {{ infoDATA.residenceNo || "-" }}</view>
31 31
 					<view v-if="!infoDATA.residenceNo">身份证号 : {{ infoDATA.identityCardNo || "-" }}</view>
32
-          <view>住院科室 :
32
+          <view v-if="infoDATA.residenceNo">住院科室 :
33 33
             {{ infoDATA.department ? infoDATA.department.dept : "-" }}
34 34
           </view>
35 35
         </view>
@@ -209,11 +209,11 @@
209 209
 
210 210
       <view class="foot_btn2" v-if="workData && workData.length > 0 && isShow">
211 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 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 217
       </view>
218 218
       <!-- <view class="foot_btn2" v-if="
219 219
           workData && workData.length === 0 && isShow && wechatFocusSwitch == 1
@@ -226,12 +226,12 @@
226 226
         }}</view> -->
227 227
         <view class="btn3" v-if="infoDATA.residenceNo" @click="scanDept()">送回病房</view>
228 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 230
       </view>
231 231
       <view class="foot_btn2" v-if="!isShow">
232 232
 				<view class="btn3" v-if="infoDATA.residenceNo" @click="scanDept()">送回病房</view>
233 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 235
       </view>
236 236
     </view>
237 237
     <!-- 弹窗 -->
@@ -1463,6 +1463,12 @@
1463 1463
           margin-top: 16rpx;
1464 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
   }