Pre Merge pull request !336 from 稚屿/N/A

This commit is contained in:
稚屿 2022-05-01 12:24:04 +00:00 committed by Gitee
commit da2a490088
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F

View File

@ -1,5 +1,5 @@
<template>
<div class="app-container">
<div class="app-container" :style="containerStyle">
<el-row :gutter="20">
<!--部门数据-->
<el-col :span="4" :xs="24">
@ -134,7 +134,7 @@
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList" :columns="columns"></right-toolbar>
</el-row>
<el-table v-loading="loading" :data="userList" @selection-change="handleSelectionChange">
<el-table v-loading="loading" :data="userList" :height="tableHeight" @selection-change="handleSelectionChange">
<el-table-column type="selection" width="50" align="center" />
<el-table-column label="用户编号" align="center" key="userId" prop="userId" v-if="columns[0].visible" />
<el-table-column label="用户名称" align="center" key="userName" prop="userName" v-if="columns[1].visible" :show-overflow-tooltip="true" />
@ -385,6 +385,13 @@ export default {
roleOptions: [],
//
form: {},
//
tableHeight: 0,
//
containerStyle: {
height: null,
'overflow-y': 'hidden'
},
defaultProps: {
children: "children",
label: "label"
@ -460,6 +467,7 @@ export default {
}
},
created() {
this.loadTableHeight();
this.getList();
this.getTreeselect();
this.getConfigKey("sys.user.initPassword").then(response => {
@ -467,6 +475,20 @@ export default {
});
},
methods: {
/** 加载表格高度 */
loadTableHeight() {
const self = this
const windowHeight = window.document.documentElement.clientHeight
self.containerStyle.height = windowHeight - 85 + 'px' //
// self.cardBodyStyle.height = windowHeight - 130 + 'px' // body
self.tableHeight = windowHeight - 330 //
window.onresize = function () {
const wHeight = window.document.documentElement.clientHeight
self.containerStyle.height = wHeight - 85 + 'px' //
// self.cardBodyStyle.height = wHeight - 130 + 'px' //
self.tableHeight = wHeight - 330 //
}
},
/** 查询用户列表 */
getList() {
this.loading = true;