From 38bb6cfe527cfa264f7b6b88168bdba23863b189 Mon Sep 17 00:00:00 2001 From: feige <791364011@qq.com> Date: 星期一, 11 十一月 2024 17:17:56 +0800 Subject: [PATCH] 修改了性别 --- ruoyi-ui/src/views/genealogy/index.vue | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ruoyi-ui/src/views/genealogy/index.vue b/ruoyi-ui/src/views/genealogy/index.vue index 873edca..3278f67 100644 --- a/ruoyi-ui/src/views/genealogy/index.vue +++ b/ruoyi-ui/src/views/genealogy/index.vue @@ -101,8 +101,8 @@ <el-table-column label="鎬у埆" prop="sex" sortable width="100" align="center" > <template slot-scope="scope"> - <span v-if="scope.row.sex===1">鐢�</span> - <span v-if="scope.row.sex===0">濂�</span> + <span v-if="scope.row.sex===0">鐢�</span> + <span v-if="scope.row.sex===1">濂�</span> <span v-if="scope.row.sex== null">鈥斺��</span> </template> </el-table-column> -- Gitblit v1.9.1