|
@@ -26,7 +26,13 @@
|
26
|
26
|
<td width="50">年 龄:</td>
|
27
|
27
|
<td width="150">
|
28
|
28
|
<div class="under-line">
|
29
|
|
- {{ checkIdCardNo(patientInfo.id_card_no) }}
|
|
29
|
+
|
|
30
|
+ <span v-if="checkIdCardNo(patientInfo.id_card_no)<100">
|
|
31
|
+ {{ checkIdCardNo(patientInfo.id_card_no) }}
|
|
32
|
+ </span>
|
|
33
|
+ <span v-else>
|
|
34
|
+ {{ patientInfo.age }}
|
|
35
|
+ </span>
|
30
|
36
|
</div>
|
31
|
37
|
</td>
|
32
|
38
|
<td width="60">岁</td>
|
|
@@ -914,7 +920,8 @@ export default {
|
914
|
920
|
getDialysisRecord(this.queryParams).then(response => {
|
915
|
921
|
if (response.data.state === 1) {
|
916
|
922
|
this.total = response.data.data.total;
|
917
|
|
-
|
|
923
|
+ console.log('response.data.data',response.data.data);
|
|
924
|
+
|
918
|
925
|
this.adminUser = response.data.data.users;
|
919
|
926
|
this.users = response.data.data.users;
|
920
|
927
|
var patientInfo = response.data.data.patientInfo;
|