|
@@ -133,6 +133,19 @@
|
133
|
133
|
<text class="text2"
|
134
|
134
|
v-if="infoDATA.taskType.associationType.value == 'patientTransport' || infoDATA.taskType.associationType.value == 'other'">{{ infoDATA.yyjdTime|yyTimeFilter }}</text>
|
135
|
135
|
</view>
|
|
136
|
+ <view class="page_item_foot_text" v-if="
|
|
137
|
+ infoDATA.taskType.associationType.value == 'inspect' ||
|
|
138
|
+ infoDATA.taskType.associationType.value == 'patientTransport'
|
|
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>
|
136
|
149
|
<view class="page_item_foot_text" v-if="
|
137
|
150
|
infoDATA.taskType.associationType.value == 'inspect' ||
|
138
|
151
|
infoDATA.taskType.associationType.value == 'patientTransport'
|
|
@@ -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
|