|
@@ -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;
|