From b35a804358de7849f42bcdae934c236d13e3f233 Mon Sep 17 00:00:00 2001 From: Tcsm <1377977403@qq.com> Date: 星期二, 19 九月 2023 14:20:57 +0800 Subject: [PATCH] 全局搜索样式调整,家谱加上页码 --- ruoyi-ui/src/views/genealogy/index.vue | 10 +++++++--- 1 files changed, 7 insertions(+), 3 deletions(-) diff --git a/ruoyi-ui/src/views/genealogy/index.vue b/ruoyi-ui/src/views/genealogy/index.vue index 152afad..3f43d34 100644 --- a/ruoyi-ui/src/views/genealogy/index.vue +++ b/ruoyi-ui/src/views/genealogy/index.vue @@ -143,7 +143,7 @@ </el-row> </div> - <el-table v-loading="loading" :data="listRoot" @selection-change="handleSelectionChange" :row-class-name="tableRowClassName" style="background: #FFEFF2; border-radius: 14px 14px 14px 14px;"> + <el-table v-loading="loading" :data="listRoot" :row-key="getRowId" ref="multipleTable" @selection-change="handleSelectionChange" :row-class-name="tableRowClassName" style="background: #FFEFF2; border-radius: 14px 14px 14px 14px;"> <el-table-column type="selection" width="55" align="center" /> <el-table-column fixed label="搴忓彿" sortable type="index" :index="(queryParams.pageNum-1)*queryParams.pageSize+1" width="80"/> @@ -195,7 +195,7 @@ </el-table> <pagination - v-show="total>0" + v-show="total!=0" :total="total" :page.sync="queryParams.pageNum" :limit.sync="queryParams.pageSize" @@ -305,7 +305,7 @@ dsb:true, btn:false, fit:['fill'], - + uploading: false, formDat: { //寮犳皬涓�瑙堣〃 userid:undefined, @@ -514,6 +514,10 @@ return '鍏跺畠' } }, + getRowId(row) + { + return row.id + }, handleRemove(file) { alert(323) -- Gitblit v1.9.1