From 39325ed5f9d5ebd80ad0c6bfe6689b014b72d0fb Mon Sep 17 00:00:00 2001 From: WXL (wul) <wl_5969728@163.com> Date: 星期五, 12 九月 2025 18:00:53 +0800 Subject: [PATCH] 随访类型及人员配置优化,宣教优化,脱敏处理 --- src/views/patient/follow/index.vue | 14 +++++++++++--- 1 files changed, 11 insertions(+), 3 deletions(-) diff --git a/src/views/patient/follow/index.vue b/src/views/patient/follow/index.vue index ed3682c..ec4b99f 100644 --- a/src/views/patient/follow/index.vue +++ b/src/views/patient/follow/index.vue @@ -164,7 +164,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="鑱旂郴鏂瑰紡" @@ -172,7 +176,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" @@ -623,6 +631,6 @@ color: #de7897; } .button-textsc { - color: #3664D9; + color: #3664d9; } </style> -- Gitblit v1.9.3