From 19c62799136bb984e968fcb6b0a4d2371d018270 Mon Sep 17 00:00:00 2001 From: WXL (wul) <wl_5969728@163.com> Date: 星期一, 15 九月 2025 17:43:11 +0800 Subject: [PATCH] 人员信息展示更新 --- src/views/patient/patient/ExternalPatient.vue | 37 +++++++++++++++++++++++++++++-------- 1 files changed, 29 insertions(+), 8 deletions(-) diff --git a/src/views/patient/patient/ExternalPatient.vue b/src/views/patient/patient/ExternalPatient.vue index 5f20aaa..a4bee4e 100644 --- a/src/views/patient/patient/ExternalPatient.vue +++ b/src/views/patient/patient/ExternalPatient.vue @@ -153,7 +153,11 @@ key="idcardno" prop="idcardno" width="190" - /> + > + <template slot-scope="scope"> + <span>{{ desensitization(scope.row.idcardno,'idCard') }}</span> + </template></el-table-column + > <el-table-column label="鑱旂郴鏂瑰紡" @@ -161,7 +165,11 @@ key="telcode" prop="telcode" width="120" - /> + > + <template slot-scope="scope"> + <span>{{ desensitization(scope.row.telcode,'phone') }}</span> + </template></el-table-column + > <el-table-column label="寤烘。鏃ユ湡" align="center" @@ -547,9 +555,17 @@ <el-table-column prop="name" label="濮撳悕" width="100"> </el-table-column> <el-table-column prop="sex" label="鎬у埆"width="100"> </el-table-column> - <el-table-column prop="idcardno" width="300" label="璇佷欢鍙风爜"> </el-table-column> + <el-table-column prop="idcardno" width="300" label="璇佷欢鍙风爜"> + <template slot-scope="scope"> + <span>{{ desensitization(scope.row.idcardno,'idCard') }}</span> + </template> + </el-table-column> <el-table-column prop="goday" label="鍑虹敓鏃ユ湡"> </el-table-column> - <el-table-column prop="telcode" width="200" label="鑱旂郴鏂瑰紡"> </el-table-column> + <el-table-column prop="telcode" width="200" label="鑱旂郴鏂瑰紡"> + <template slot-scope="scope"> + <span>{{ desensitization(scope.row.telcode,'phone') }}</span> + </template> + </el-table-column> <el-table-column prop="createTime" width="200" label="鍒涘缓鏃ユ湡"> </el-table-column> </el-table> @@ -584,6 +600,9 @@ width="100"> </el-table-column> <el-table-column prop="sex" label="鎬у埆"width="100"> </el-table-column> <el-table-column prop="certificatenum" label="璇佷欢鍙风爜"> + <template slot-scope="scope"> + <span>{{ desensitization(scope.row.telcode,'phone') }}</span> + </template> </el-table-column> <el-table-column prop="goday" label="鍑虹敓鏃ユ湡"> </el-table-column> <el-table-column prop="menum" label="鏈汉鑱旂郴鏂瑰紡"> </el-table-column> @@ -761,7 +780,7 @@ }, { value: 1, - label: "绉戝鎮h��", + label: "璇鹃缁勬偅鑰�", }, { value: 2, @@ -1178,10 +1197,12 @@ font-size: 20px; } ::v-deep.leftvlue .el-card__body { - background: #d0e9fd; + background: #F2F8FF; + color: #324A9B; } ::v-deep.leftvlue .el-card__body:hover { - background: #8dc8f8; + background: #3664D9; + color: #fff; cursor: pointer; /* 榧犳爣鎮诞鏃跺彉涓烘墜褰� */ } .leftvlue { @@ -1245,7 +1266,7 @@ } } .button-textsc { - color: #28cfe6; + color: #3664D9; } .button-textxg { color: #de7897; -- Gitblit v1.9.3