|
@@ -6,6 +6,7 @@
|
6
|
6
|
<view class="text1"> 服务完成 </view>
|
7
|
7
|
</view>
|
8
|
8
|
<view class="Scanning_top_text">
|
|
9
|
+ <view class="red">您服务{{patient}}{{orderList.length}}项服务</view>
|
9
|
10
|
<strong class="red">请您确认患者的所有资料物品并完成交接!</strong>
|
10
|
11
|
</view>
|
11
|
12
|
</view>
|
|
@@ -18,7 +19,7 @@
|
18
|
19
|
{{item.taskType ? item.taskType.taskName : ''}}
|
19
|
20
|
</view>
|
20
|
21
|
<view class="value">
|
21
|
|
- 单号:{{item.gdcode}}
|
|
22
|
+ {{item.completeTime | formatDate('yyyy-MM-dd hh:mm')}}
|
22
|
23
|
</view>
|
23
|
24
|
</view>
|
24
|
25
|
</scroll-view>
|
|
@@ -40,6 +41,7 @@
|
40
|
41
|
export default {
|
41
|
42
|
data() {
|
42
|
43
|
return {
|
|
44
|
+ patient: '',
|
43
|
45
|
infoData: {},
|
44
|
46
|
hosId: uni.getStorageSync('userData').user.currentHospital.id,
|
45
|
47
|
queryObj: {}, //路由传递过来的数据
|
|
@@ -59,6 +61,7 @@
|
59
|
61
|
if(options.model){
|
60
|
62
|
this.infoData = JSON.parse(options.model);
|
61
|
63
|
this.orderList = this.infoData.orderList || [];
|
|
64
|
+ this.patient = this.infoData.patient;
|
62
|
65
|
}
|
63
|
66
|
// #ifdef APP-PLUS
|
64
|
67
|
webHandle("no", "app");
|
|
@@ -183,13 +186,15 @@
|
183
|
186
|
}
|
184
|
187
|
.name,
|
185
|
188
|
.value{
|
186
|
|
- flex: 1;
|
187
|
189
|
display: flex;
|
188
|
190
|
align-items: center;
|
189
|
191
|
height: 100%;
|
190
|
192
|
font-weight: bold;
|
191
|
193
|
line-height: 1;
|
192
|
194
|
}
|
|
195
|
+ .name{
|
|
196
|
+ flex: 1;
|
|
197
|
+ }
|
193
|
198
|
.value {
|
194
|
199
|
justify-content: flex-end;
|
195
|
200
|
}
|