Browse Source

南京中医药问题整改

seimin 1 month ago
parent
commit
84f22379c8

+ 8 - 6
components/handViewDrugsBag/handViewDrugsBag.vue

@@ -10,7 +10,7 @@
10 10
             {{name}}:
11 11
           </view>
12 12
           <view class="uni-list-cell-db">
13
-            <input class="uni-input" auto-focus="true" :placeholder="'请填写'+name" v-model="account"
13
+            <input class="uni-input" auto-focus="true" :placeholder="'请填写'+name" placeholder-style="text-align:left;" v-model="account"
14 14
               @input="bindPickerChange($event)" />
15 15
           </view>
16 16
         </view>
@@ -117,7 +117,7 @@
117 117
         type: Object,
118 118
         default: () => {
119 119
           return {
120
-            ok: "确",
120
+            ok: "确",
121 121
             cancel: "取消",
122 122
           };
123 123
         },
@@ -196,7 +196,7 @@
196 196
     z-index: 999;
197 197
 
198 198
     .uni-list-cell {
199
-      width: 90%;
199
+      width: 100%;
200 200
       display: flex;
201 201
       flex-direction: row;
202 202
       justify-content: space-evenly;
@@ -205,16 +205,18 @@
205 205
       margin-top: 32rpx;
206 206
 
207 207
       .uni-list-cell-left {
208
-        flex: 3;
209 208
         font-size: 32rpx;
210 209
         color: #666;
210
+        text-align: left;
211
+        padding-left: 24rpx;
211 212
       }
212 213
 
213 214
       .uni-list-cell-db {
214 215
         border: 1px solid #e5e9ed;
215 216
         background-color: #fff;
216
-        padding: 16rpx 0;
217
-        flex: 5;
217
+        padding: 16rpx;
218
+        flex: 1;
219
+        margin-right: 24rpx;
218 220
       }
219 221
 
220 222
       .uni-list-cell-db-text {

+ 1 - 1
components/uni-datetime-picker/uni-datetime-picker.vue

@@ -836,7 +836,7 @@
836 836
 		overflow: hidden;
837 837
 		flex: 1;
838 838
 		line-height: 1;
839
-		font-size: 14px;
839
+		font-size: 12px;
840 840
 		height: 35px;
841 841
 		display: flex;
842 842
 		align-items: center;

+ 8 - 0
main.js

@@ -46,6 +46,14 @@ Vue.filter('formatDate', function(timestamp, format){
46 46
     return '';
47 47
   }
48 48
 })
49
+// 日期过滤器(去掉秒)
50
+Vue.filter('filterSecondDate', function(dateStr){
51
+  if(dateStr && dateStr.length === 19){
52
+    return dateStr.slice(0, -3);
53
+  }else{
54
+    return dateStr;
55
+  }
56
+})
49 57
 App.mpType = 'app'
50 58
 
51 59
 const app = new Vue({

+ 260 - 42
pages/patientInformationInfo/patientInformationInfo.vue

@@ -1,17 +1,16 @@
1 1
 <template>
2 2
 	<view class="patientInformationInfo" v-if="Object.keys(infoDATA).length > 0">
3 3
 		<view class="page_head">
4
-			<view class="title">{{ infoDATA.patientName }}</view>
5
-			<view class="patientCode">{{ infoDATA.residenceNo }}</view>
4
+			<view class="title">{{ infoDATA.patientName }}<text class="patientCode">{{ infoDATA.residenceNo }}</text></view>
6 5
 			<view class="info">
7
-				<view class="bedNum">
6
+				<view :class="(infoDATA.careLevel || infoDATA.illnessState)?'bedNum':'waitingCount'">
8 7
 					<text class="info_h">床号</text>
9
-					<text class="info_b">{{ infoDATA.bedNum || "-" }}</text>
8
+					<text class="info_b">{{ infoDATA.bedNum }}</text>
10 9
 				</view>
11
-				<view :class="infoDATA.careLevel?'bedNum':'waitingCount'">
10
+				<!-- <view :class="(infoDATA.careLevel || infoDATA.illnessState)?'bedNum':'waitingCount'">
12 11
 					<text class="info_h">待检查数</text>
13 12
 					<text class="info_b">{{ infoDATA.watingCount }}</text>
14
-				</view>
13
+				</view> -->
15 14
 				<view class="bedNum" v-if="infoDATA.careLevel">
16 15
 					<text class="info_h">护理等级</text>
17 16
 					<text class="info_b">{{ infoDATA.careLevel.name }}</text>
@@ -22,26 +21,45 @@
22 21
 				</view>
23 22
 			</view>
24 23
 		</view>
25
-		<view class="page_item" v-for="item in infoDATA.inspects" :key="item.id">
26
-			<view class="page_item_info">
27
-				<view class="page_item_info_title">检查项目:<text>{{ item.inspectName || "-" }}</text></view>
28
-				<view class="page_item_info_title">检查科室:<text>{{
29
-            item.execDept ? item.execDept.dept : "-"
30
-          }}</text></view>
31
-				<view class="page_item_info_title btn">预约时间:<text>{{ item.yyTime || "-" }}</text><button
32
-						@click="changeYyTime(item)" v-if="item.inspectState.value == 1 || item.inspectState.value == 30">修改</button></view>
33
-				<view class="page_item_info_title">预约叫号:<text>{{ item.reservationNumber || "-" }}</text></view>
34
-				<view class="page_item_info_title">是否紧急:<text
35
-						:class="{red:item.priority===1||item.priority==='1'}">{{ (item.priority===1||item.priority==='1')?'是':'否' }}</text>
36
-				</view>
37
-			</view>
38
-		</view>
39
-		<view v-if="!infoDATA.inspects || infoDATA.inspects.length == 0" class="zwsj">
24
+    <scroll-view v-if="!isEmpty" scroll-y class="scrollContent">
25
+      <view class="page_item" v-for="(inspects, key, index) in infoDATA.inspectListMap" :key="key">
26
+        <view class="splitLine">
27
+          <view class="splitLineFlex">
28
+            <view class="splitLineBox"></view>
29
+          </view>
30
+          <view>{{key}}</view>
31
+          <view class="splitLineFlex">
32
+            <view class="splitLineBox"></view>
33
+          </view>
34
+        </view>
35
+        <view class="page_item_info" :class="{mt0: i === 0}" v-for="(item, i) in inspects" :key="item.id">
36
+          <view class="page_item_info_title">检查项目:<text>{{ item.inspectName }}</text></view>
37
+          <view class="page_item_info_title">检查科室:<text>{{ item.execDept ? item.execDept.dept : "" }}</text></view>
38
+          <view class="page_item_info_title btn row">
39
+            <view>预约时间:<text>{{ item.yyTime | filterSecondDate }}</text><text v-if="item.reservationNumber">({{ item.reservationNumber }})</text></view>
40
+            <button @click="changeYyTime(item)" v-if="item.inspectState.value == 1 || item.inspectState.value == 30">修改</button>
41
+          </view>
42
+          <view class="page_item_info_title row">
43
+            <view>是否紧急:<text :class="{red:item.priority===1||item.priority==='1'}">{{ (item.priority===1||item.priority==='1')?'是':'否' }}</text></view>
44
+            <view>状态:<text v-if="item.inspectState">{{ item.inspectState.name }}</text></view>
45
+          </view>
46
+          <view class="buildOrder" @click="build(item)" v-if="!item.gdId&&(item.inspectState.value==1||item.inspectState.value==30)">建单</view>
47
+        </view>
48
+      </view>
49
+    </scroll-view>
50
+		<view v-if="isEmpty" class="zwsj">
40 51
 			<image class="zwsj-img" mode="widthFix" src="../../static/img/zanwushuju.png"></image>
41 52
 			<view class="zwsj-txt">暂无检查信息</view>
42 53
 		</view>
54
+    <view class="toolbar" @click="Scanning()">
55
+      <text class="toolbar-icon newicon newicon-saoma"></text>
56
+      <text class="toolbar-sao">扫一扫</text>
57
+    </view>
43 58
 		<!-- 弹窗 -->
44 59
 		<inspectRemoveModel :title="models1.title" :icon="models1.icon" :disjunctor="models1.disjunctor" :content="models1.content" @know="know1" :operate="models1.operate" @ok="ok1" @cancel="cancel1"></inspectRemoveModel>
60
+    <!-- 弹窗 -->
61
+    <showModel :title="models.title" :icon="models.icon" :disjunctor="models.disjunctor" :content="models.content"
62
+      @ok="ok" @cancel="cancel" @know="know" :operate="models.operate"></showModel>
45 63
 	</view>
46 64
 </template>
47 65
 <script>
@@ -54,15 +72,152 @@
54 72
 	export default {
55 73
 		data() {
56 74
 			return {
75
+        SMFlag: true,
76
+        isEmpty: true,
57 77
 				options: {},
58 78
 				infoDATA: {},
59 79
 				// 弹窗model1
60 80
 				models1: {
61 81
 				  disjunctor: false,
62 82
 				},
83
+        // 建单的对象
84
+        jdItem: {},
85
+        // 弹窗model
86
+        models: {
87
+          disjunctor: false,
88
+        },
89
+        //当前登录人所属科室
90
+        currenDept: uni.getStorageSync("userData").user.dept,
63 91
 			};
64 92
 		},
65 93
 		methods: {
94
+      // 建单
95
+      build(data) {
96
+        console.log(data);
97
+        this.jdItem = data;
98
+        this.models = {
99
+          disjunctor: true,
100
+          title: "提示",
101
+          content: `您即将创建【${data.patientName || ""}】患者前往【${
102
+          data.execDept ? data.execDept.dept : ""
103
+        }】进行【${data.inspectName || ""}】检查,您确认吗?`,
104
+          icon: "warn",
105
+          operate: {
106
+            ok: "确定",
107
+            cancel: "取消",
108
+          },
109
+        };
110
+      },
111
+      //建单后知道了
112
+      know() {
113
+        this.models.disjunctor = false;
114
+        this.getInfo(this.jdItem.patientCode);
115
+      },
116
+      //建单确定
117
+      ok() {
118
+        this.models.disjunctor = false;
119
+        let postData = {
120
+          deptId: this.currenDept.id
121
+        };
122
+        let taskId;
123
+        uni.showLoading({
124
+          title: "加载中",
125
+          mask: true,
126
+        });
127
+        post("/nurse/getDeptTaskType", postData).then((result) => {
128
+          if (result.status == 200) {
129
+            let obj = result.data.allTaskTypes.filter(
130
+              (item) => item.associationType.value == "inspect"
131
+            );
132
+            if (obj.length) {
133
+              taskId = obj[0].id;
134
+              let postData = {
135
+                workOrder: {
136
+                  sourceId: 4,
137
+                  taskType: {
138
+                    id: taskId,
139
+                    isHalfInspect: obj[0].isHalfInspect === 1 ? 1 : 0
140
+                  },
141
+                  createDept: this.currenDept.id,
142
+                  startDept: {
143
+                    id: this.currenDept.id
144
+                  },
145
+                  patient: {
146
+                    patientCode: this.jdItem.patientCode
147
+                  },
148
+                  checkList: [{
149
+                    id: this.jdItem.id
150
+                  }],
151
+                  goods: "",
152
+                  worker: {
153
+                    id: uni.getStorageSync("userData").user.id
154
+                  },
155
+                  workerStartOrderFlag: 1,
156
+                },
157
+              };
158
+              //根据检查的紧急度加急
159
+              if (this.jdItem.priority === 1 || this.jdItem.priority === '1') {
160
+                postData.workOrder["urgentDetails"] = {
161
+                  checkStatus: {
162
+                    id: 329
163
+                  },
164
+                  urgentReason: '系统根据检查信息,自动进行加急',
165
+                };
166
+              }
167
+              post("/api/startOrder", postData).then((res) => {
168
+                uni.hideLoading();
169
+                let msg = res.msg;
170
+                let icon = "error";
171
+                if (res.status == 200) {
172
+                  msg = "建单成功";
173
+                  icon = "success";
174
+                }
175
+                this.models = {
176
+                  disjunctor: true,
177
+                  content: msg,
178
+                  icon: icon,
179
+                  operate: {
180
+                    know: "知道了",
181
+                  },
182
+                };
183
+              });
184
+            } else {
185
+              uni.hideLoading();
186
+              this.models = {
187
+                disjunctor: true,
188
+                content: "建单失败,科室未开通!",
189
+                icon: "error",
190
+                operate: {
191
+                  know: "知道了",
192
+                },
193
+              };
194
+            }
195
+          } else {
196
+            uni.hideLoading();
197
+            uni.showToast({
198
+              icon: "none",
199
+              title: result.msg || "接口获取数据失败!",
200
+            });
201
+          }
202
+        });
203
+      },
204
+      //建单取消
205
+      cancel() {
206
+        this.models.disjunctor = false;
207
+      },
208
+      // 扫一扫
209
+      Scanning(qrcodePrefix = '') {
210
+        if (!this.SMFlag) {
211
+          return;
212
+        }
213
+        this.SMFlag = false;
214
+        SM().then((content) => {
215
+          this.SMFlag = true;
216
+          this.getInfo(content);
217
+        }).catch(err => {
218
+          this.SMFlag = true;
219
+        });
220
+      },
66 221
 			// 修改预约时间->知道了
67 222
 			know1() {
68 223
 			  this.models1.disjunctor = false;
@@ -136,16 +291,8 @@
136 291
 				}).then((res) => {
137 292
 					uni.hideLoading();
138 293
 					if (res.status == 200) {
139
-						if (res.data.inspects && Array.isArray(res.data.inspects)) {
140
-							res.data.inspects = res.data.inspects.map(v => {
141
-								if (v.yyTime) {
142
-									let [date, time] = v.yyTime.split(" ");
143
-									v.yyTime = new Date(date).Format('yyyy-MM-dd') + " " + time.slice(0, -
144
-										3);
145
-								}
146
-								return v;
147
-							})
148
-						}
294
+            res.data.inspectListMap = res.data.inspectListMap || {};
295
+            this.isEmpty = Object.keys(res.data.inspectListMap).length === 0;
149 296
 						this.infoDATA = res.data;
150 297
 					} else {
151 298
 						uni.showToast({
@@ -166,13 +313,42 @@
166 313
 			webHandle("no", "wx");
167 314
 			// #endif
168 315
 		},
316
+    onShow() {
317
+      this.SMFlag = true;
318
+    }
169 319
 	};
170 320
 </script>
171
-<style lang="less">
321
+<style lang="less" scoped>
322
+  .toolbar {
323
+    margin-bottom: 16rpx;
324
+    z-index: 999;
325
+    height: 88rpx;
326
+    display: flex;
327
+    justify-content: center;
328
+    align-items: center;
329
+    box-sizing: border-box;
330
+    border-radius: 4rpx;
331
+    background-color: #E5E8ED;
332
+  
333
+    .toolbar-icon {
334
+      font-size: 52rpx;
335
+      margin-right: 16rpx;
336
+      color: #07863c;
337
+    }
338
+  
339
+    .toolbar-sao {
340
+      font-size: 36rpx;
341
+      color: #333;
342
+    }
343
+  }
172 344
 	.patientInformationInfo {
173
-		padding: 0 20rpx;
174
-
345
+    background-color: #F7F7F7;
346
+    display: flex;
347
+    flex-direction: column;
348
+    height: 100vh;
175 349
 		.zwsj {
350
+      flex: 1;
351
+      min-height: 0;
176 352
 			text-align: center;
177 353
 
178 354
 			.zwsj-img {
@@ -186,7 +362,7 @@
186 362
 				text-align: center;
187 363
 			}
188 364
 		}
189
-
365
+    
190 366
 		.page_head {
191 367
 			background-color: #49b856;
192 368
 			color: #fff;
@@ -198,9 +374,8 @@
198 374
 			}
199 375
 
200 376
 			.patientCode {
201
-				padding-bottom: 12rpx;
377
+				margin-left: 12rpx;
202 378
 				font-size: 28rpx;
203
-				text-align: center;
204 379
 			}
205 380
 
206 381
 			.info {
@@ -245,20 +420,58 @@
245 420
 			}
246 421
 		}
247 422
 
423
+    .scrollContent{
424
+      flex: 1;
425
+      min-height: 0;
426
+    }
248 427
 		.page_item {
249
-			margin-top: 16rpx;
250
-			margin-bottom: 16rpx;
251
-			background: #fff;
428
+			// margin-bottom: 10rpx;
252 429
 			border-radius: 8rpx;
253 430
 			overflow: hidden;
254
-			padding: 0 16rpx;
255
-			border: 2rpx solid #e5e9ed;
431
+      
432
+      .splitLine{
433
+        height: 50rpx;
434
+        display: flex;
435
+        align-items: center;
436
+        justify-content: center;
437
+        color: #8F8F8F;
438
+        .splitLineFlex{
439
+          flex: 1;
440
+          display: flex;
441
+          align-items: center;
442
+          justify-content: center;
443
+          .splitLineBox{
444
+            width: calc(100% - 48rpx);
445
+            height: 1rpx;
446
+            background-color: #8F8F8F;
447
+          }
448
+        }
449
+      }
256 450
 
257 451
 			.page_item_info {
452
+        margin-top: 10rpx;
258 453
 				padding: 20rpx 16rpx;
259 454
 				text-align: left;
260 455
 				line-height: 60rpx;
261 456
 				font-size: 30rpx;
457
+        background: #fff;
458
+        
459
+        &.mt0{
460
+          margin-top: 0;
461
+        }
462
+        
463
+        .buildOrder{
464
+          width: 258rpx;
465
+          height: 72rpx;
466
+          background: #49B856;
467
+          border-radius: 6rpx;
468
+          margin: 0 auto;
469
+          color: #FFFFFF;
470
+          display: flex;
471
+          align-items: center;
472
+          justify-content: center;
473
+          font-size: 30rpx;
474
+        }
262 475
 
263 476
 				.page_item_info_title {
264 477
 					font-weight: 700;
@@ -273,6 +486,11 @@
273 486
 							margin: 0;
274 487
 						}
275 488
 					}
489
+          &.row{
490
+            display: flex;
491
+            align-items: center;
492
+            justify-content: space-between;
493
+          }
276 494
 
277 495
 					text {
278 496
 						font-weight: normal;

+ 7 - 7
pages/receipt_infopage/receipt_infopage.vue

@@ -355,7 +355,7 @@
355 355
       <!-- 如果不是静配,药配,标本配送,标本轮巡,万能交接 -->
356 356
       <template
357 357
         v-if="((!infoDATA.worker)||(infoDATA.worker&&infoDATA.worker.id == currentUserId))&&infoDATA.gdState.value != 6&&infoDATA.gdState.value != 7&&infoDATA.gdState.value != 11">
358
-        <view :class="[infoDATA.taskType.specialCloseButton == 1 ? 'btn3' : 'btn2']" v-if="
358
+        <!-- <view :class="[infoDATA.taskType.specialCloseButton == 1 ? 'btn3' : 'btn2']" v-if="
359 359
           (hideInspectScan != 1 || (hideInspectScan == 1 && infoDATA.gdState.value == 4)) &&
360 360
           infoDATA.gdState.value != 2 &&
361 361
           infoDATA.taskType.associationType.value != 'jPBag' &&
@@ -366,15 +366,15 @@
366 366
           !(infoDATA.taskType.associationType.value == 'other' && (infoDATA.gdState.value == 4 && infoDATA.taskType.carryingCourses[0].actionsSwitch || infoDATA.gdState.value == 5 && infoDATA.taskType.carryingCourses[1].actionsSwitch))
367 367
         " hover-class="seimin-btn-hover">
368 368
           <smallScreen :sData="infoDATA" :sType="1">扫码</smallScreen>
369
-        </view>
369
+        </view> -->
370 370
         <!-- 其他临床服务-完成工单-待到达 -->
371 371
         <view v-if="infoDATA.taskType.associationType.value == 'other' && infoDATA.gdState.value == 4 && infoDATA.taskType.carryingCourses[0].actionsSwitch" class="btn2 page_item_btn" @click="otherCompleteOrder(infoDATA)" hover-class="seimin-btn-hover">确认到达</view>
372 372
         <!-- 其他临床服务-完成工单-待送达 -->
373 373
         <view v-if="infoDATA.taskType.associationType.value == 'other' && infoDATA.gdState.value == 5 && infoDATA.taskType.carryingCourses[1].actionsSwitch" class="btn2 page_item_btn" @click="otherCompleteOrder(infoDATA)" hover-class="seimin-btn-hover">完成工单</view>
374 374
         <!-- 其他临床服务-拍照 -->
375
-        <view v-if="infoDATA.taskType.associationType.value == 'other' && infoDATA.gdState.value == 4 && infoDATA.taskType.carryingCourses[0].photoSwitch" class="btn2 page_item_btn" @click="photographToOther(infoDATA, 'start')" hover-class="seimin-btn-hover">拍照</view>
375
+        <!-- <view v-if="infoDATA.taskType.associationType.value == 'other' && infoDATA.gdState.value == 4 && infoDATA.taskType.carryingCourses[0].photoSwitch" class="btn2 page_item_btn" @click="photographToOther(infoDATA, 'start')" hover-class="seimin-btn-hover">拍照</view> -->
376 376
 
377
-        <view :class="[infoDATA.taskType.specialCloseButton == 1 ? 'btn3' : 'btn2']" @click="photograph(infoDATA)" v-if="
377
+        <!-- <view :class="[infoDATA.taskType.specialCloseButton == 1 ? 'btn3' : 'btn2']" @click="photograph(infoDATA)" v-if="
378 378
           infoDATA.taskType.associationType.value != 'jPBag' &&
379 379
           infoDATA.taskType.associationType.value != 'drugsBag' &&
380 380
           infoDATA.taskType.associationType.value != 'specimen' &&
@@ -382,7 +382,7 @@
382 382
           infoDATA.taskType.associationType.value != 'other' &&
383 383
           infoDATA.taskType.associationType.value != 'ordinary' &&
384 384
           infoDATA.gdState.value == 4
385
-        " hover-class="seimin-btn-hover">拍照</view>
385
+        " hover-class="seimin-btn-hover">拍照</view> -->
386 386
         <view class="btn3" @click="specialCloseClick()" v-if="
387 387
           infoDATA.gdState.value != 2 &&
388 388
           infoDATA.taskType.associationType.value != 'jPBag' &&
@@ -394,7 +394,7 @@
394 394
         " hover-class="seimin-btn-hover">特殊情况关闭</view>
395 395
       </template>
396 396
       <!-- 如果不是患者陪检或患者转运或其他,万能交接 -->
397
-      <view :class="[infoDATA.taskType.specialCloseButton == 1 ? 'btn3' : 'btn2']" v-if="
397
+      <!-- <view :class="[infoDATA.taskType.specialCloseButton == 1 ? 'btn3' : 'btn2']" v-if="
398 398
           infoDATA.gdState.value != 2 &&
399 399
           infoDATA.taskType.associationType.value != 'patientTransport' &&
400 400
           infoDATA.taskType.associationType.value != 'inspect' &&
@@ -402,7 +402,7 @@
402 402
           infoDATA.taskType.associationType.value != 'ordinary'
403 403
         " hover-class="seimin-btn-hover">
404 404
         <smallScreen :sData="infoDATA" :sType="2">扫码</smallScreen>
405
-      </view>
405
+      </view> -->
406 406
       <!-- 如果是万能交接 -->
407 407
       <view :class="[infoDATA.taskType.specialCloseButton == 1 ? 'btn3' : 'btn2']"
408 408
         v-if="infoDATA.taskType.associationType.value == 'ordinary'"

+ 2 - 2
pages/receiptpage/receiptpage.vue

@@ -119,7 +119,7 @@
119 119
                   预约时间 : {{ item.yyTime | yyTimeFilter
120 120
                   }}<text v-if="item.reservationNumber">({{ item.reservationNumber }})</text>
121 121
                 </view>
122
-                <view>
122
+                <view style="font-weight: bold;">
123 123
                   患者信息 : {{ item.patient ? item.patient.patientName : "-" }}({{
124 124
                     item.patient ? item.patient.bedNum : "-"
125 125
                   }})
@@ -163,7 +163,7 @@
163 163
                   预约时间 : {{ item.yyjdTime | yyTimeFilter
164 164
                   }}<text v-if="item.reservationNumber">({{ item.reservationNumber }})</text>
165 165
                 </view>
166
-                <view>
166
+                <view style="font-weight: bold;">
167 167
                   患者信息 : {{ item.patient ? item.patient.patientName : "-" }}({{
168 168
                     item.patient ? item.patient.bedNum : "-"
169 169
                   }})

+ 20 - 44
pages/scanning_ins/scanning_ins.vue

@@ -24,8 +24,7 @@
24 24
 								  infoDATA.cardNo || "-"
25 25
 								}})
26 26
 							</text>
27
-							</text>
28
-            <button @click="getInspectList()">查看检查</button>
27
+            </text>
29 28
           </view>
30 29
           <view v-if="infoDATA.residenceNo">住院号 : {{ infoDATA.residenceNo || "-" }}</view>
31 30
 					<view v-if="!infoDATA.residenceNo">身份证号 : {{ infoDATA.identityCardNo || "-" }}</view>
@@ -207,7 +206,8 @@
207 206
       </view>
208 207
 
209 208
       <view class="foot_btn1" v-if="infoDATA.residenceNo && batchCreationAndReturn == 1">
210
-				<view class="btn1 btn4" @click="scanDept('all')">批量送回病房</view>
209
+				<view class="btn3" @click="scanDept('all')">批量送回病房</view>
210
+				<view class="btn3" @click="getInspectList()">查看检查</view>
211 211
       </view>
212 212
       <view class="foot_btn2" v-if="workData && workData.length > 0 && isShow">
213 213
         <view class="btn1" :class="(!infoDATA.residenceNo && addService==0)?'btn5':''" @click="getInspectAndPatientTransform(typeData)">一键操作</view>
@@ -663,13 +663,17 @@
663 663
       },
664 664
       // 查看检查
665 665
       getInspectList() {
666
+        // uni.navigateTo({
667
+        //   url: `../inspectList/inspectList?id=${this.infoDATA.department.id}&dept=${this.infoDATA.department.dept}&patientCode=${this.infoDATA.patientCode}`,
668
+        // });
666 669
         uni.navigateTo({
667
-          url: `../inspectList/inspectList?id=${this.infoDATA.department.id}&dept=${this.infoDATA.department.dept}&patientCode=${this.infoDATA.patientCode}`,
670
+          url: `../patientInformationInfo/patientInformationInfo?patientCode=${this.infoDATA.patientCode}`,
668 671
         });
669 672
       },
670 673
       // 通知
671 674
       notice(info) {
672 675
         let postData = {
676
+          wechatConfigType: "hsms",
673 677
           userIds: info.worker.id + "",
674 678
           content: `您负责护送的患者${info.patient.patientName}(${info.patient.bedNum})已经检查完毕,请尽快执行工单的下一步。`,
675 679
         };
@@ -1441,33 +1445,19 @@
1441 1445
         justify-content: space-between;
1442 1446
 
1443 1447
         .btn1,
1444
-        .btn2 {
1448
+        .btn2,
1449
+        .btn3,
1450
+        .btn4,
1451
+        .btn5 {
1445 1452
           height: 66rpx;
1446
-          width: 32%;
1453
+          flex: 1;
1447 1454
           background-image: linear-gradient(to right, #72c172, #3bb197);
1448 1455
           color: #fff;
1449 1456
           border-radius: 8rpx;
1450 1457
           font-size: 32rpx;
1451
-          margin-top: 16rpx;
1458
+          margin: 16rpx 1% 0;
1452 1459
           text-align: center;
1453 1460
         }
1454
-
1455
-        .btn3 {
1456
-          height: 66rpx;
1457
-          width: 48%;
1458
-          background-image: linear-gradient(to right, #72c172, #3bb197);
1459
-          color: #fff;
1460
-          border-radius: 8rpx;
1461
-          font-size: 32rpx;
1462
-          margin-top: 16rpx;
1463
-          text-align: center;
1464
-        }
1465
-				.btn4{
1466
-					width: 100% !important;
1467
-				}
1468
-				.btn5{
1469
-					width: 48% !important;
1470
-				}
1471 1461
       }
1472 1462
       .foot_btn2 {
1473 1463
         position: fixed;
@@ -1481,33 +1471,19 @@
1481 1471
         justify-content: space-between;
1482 1472
 
1483 1473
         .btn1,
1484
-        .btn2 {
1474
+        .btn2,
1475
+        .btn3,
1476
+        .btn4,
1477
+        .btn5 {
1485 1478
           height: 66rpx;
1486
-          width: 32%;
1479
+          flex: 1;
1487 1480
           background-image: linear-gradient(to right, #72c172, #3bb197);
1488 1481
           color: #fff;
1489 1482
           border-radius: 8rpx;
1490 1483
           font-size: 32rpx;
1491
-          margin-top: 16rpx;
1492
-          text-align: center;
1493
-        }
1494
-
1495
-        .btn3 {
1496
-          height: 66rpx;
1497
-          width: 48%;
1498
-          background-image: linear-gradient(to right, #72c172, #3bb197);
1499
-          color: #fff;
1500
-          border-radius: 8rpx;
1501
-          font-size: 32rpx;
1502
-          margin-top: 16rpx;
1484
+          margin: 16rpx 1% 0;
1503 1485
           text-align: center;
1504 1486
         }
1505
-				.btn4{
1506
-					width: 100% !important;
1507
-				}
1508
-				.btn5{
1509
-					width: 48% !important;
1510
-				}
1511 1487
       }
1512 1488
     }
1513 1489
   }