From fe70ca5799b3b36a6d567464b545782728b2afed Mon Sep 17 00:00:00 2001 From: WXL <1785969728@qq.com> Date: 星期五, 11 七月 2025 18:04:58 +0800 Subject: [PATCH] 测试完成 --- src/views/patient/patient/profile/index.vue | 12 ++++++++---- 1 files changed, 8 insertions(+), 4 deletions(-) diff --git a/src/views/patient/patient/profile/index.vue b/src/views/patient/patient/profile/index.vue index 53838c1..0376149 100644 --- a/src/views/patient/patient/profile/index.vue +++ b/src/views/patient/patient/profile/index.vue @@ -16,7 +16,11 @@ {{ userform.sex == 1 ? "鐢�" : "濂�" }} </div> <div style="margin-left: 10px" class="text-title"> - {{ userform.age }}宀� + <span v-if="userform.age" + >{{ userform.age }}{{ userform.ageUnit }}</span + ><span v-if="userform.age2" + >{{ userform.age2 }}{{ userform.ageUnit2 }}</span + > </div> <div style="margin-left: 10px" class="text-title"> {{ userform.birthdate }} @@ -372,12 +376,12 @@ <el-table-column label="灏辫瘖鏃堕棿" align="center" - key="admindate" - prop="admindate" + key="admitdate" + prop="admitdate" width="160" > <template slot-scope="scope"> - <span>{{ formatTime(scope.row.admindate) }}</span> + <span>{{ formatTime(scope.row.admitdate) }}</span> </template> </el-table-column> -- Gitblit v1.9.3