Commit 22e99477 by Thews

20231220wangwansu

1 parent 0256314c
Showing with 4 additions and 5 deletions
...@@ -37,7 +37,8 @@ ...@@ -37,7 +37,8 @@
<!-- <el-button type="primary" size="medium" icon="el-icon-plus" @click="exportFile">导出</el-button> --> <!-- <el-button type="primary" size="medium" icon="el-icon-plus" @click="exportFile">导出</el-button> -->
</div> </div>
<el-table :height="tableHeight" :data="tableData" stripe border @selection-change="handleSelectionChange"> <el-table :height="tableHeight" :data="tableData" stripe border @selection-change="handleSelectionChange">
<el-table-column type="selection" width="55" :selectable="selectInit"></el-table-column> <!-- <el-table-column type="selection" width="55" :selectable="selectInit"></el-table-column> -->
<el-table-column type="selection" width="55"></el-table-column>
<el-table-column type="index" label="序号" width="80" align="center"></el-table-column> <el-table-column type="index" label="序号" width="80" align="center"></el-table-column>
<el-table-column prop="deptName" label="单位" width="150" align="center"></el-table-column> <el-table-column prop="deptName" label="单位" width="150" align="center"></el-table-column>
<el-table-column prop="name" label="专家库名称" align="center"></el-table-column> <el-table-column prop="name" label="专家库名称" align="center"></el-table-column>
...@@ -266,14 +267,12 @@ export default { ...@@ -266,14 +267,12 @@ export default {
}; };
}, },
mounted() { mounted() {
},
created() {
window.addEventListener('resize', () => { window.addEventListener('resize', () => {
this.set_table_height(); this.set_table_height();
}) })
this.set_table_height(); this.set_table_height();
},
created() {
// 初始化查询列表 // 初始化查询列表
this.getList(); this.getList();
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!