no message

main
liyang 2024-04-03 16:16:49 +08:00
parent 5f5ee4cca1
commit 37e6884a0b
1 changed files with 5 additions and 1 deletions

View File

@ -121,7 +121,7 @@
<el-table <el-table
v-loading="this.tableloding" v-loading="this.tableloding"
:max-height="480" :max-height="MaxHeight"
:header-cell-style="{background:'#000',color:'#fff'}" :header-cell-style="{background:'#000',color:'#fff'}"
:data="tableData" :data="tableData"
id="educe-table" id="educe-table"
@ -438,6 +438,7 @@ export default {
} }
}] }]
}, },
MaxHeight: '',
tableloding: false, tableloding: false,
isShow:false,// isShow:false,//
value1: '', value1: '',
@ -469,6 +470,9 @@ export default {
this.queryUser(); this.queryUser();
this.PlantS(); this.PlantS();
this.LOC(); this.LOC();
this.$nextTick(() => {
this.MaxHeight = window.innerHeight - 220 +"px";
})
}, },
methods: { methods: {
handleEdit(index, row) { handleEdit(index, row) {