no message

main
liyang 2024-04-03 16:09:02 +08:00
parent efa8b59bcc
commit 5f5ee4cca1
2 changed files with 7 additions and 2 deletions

View File

@ -226,7 +226,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"
@ -565,6 +565,7 @@ export default {
// //
LP: '' LP: ''
}, },
MaxHeight: '',
plant: [], plant: [],
loc: [], loc: [],
name: [], name: [],
@ -602,6 +603,10 @@ export default {
this.Plant(); this.Plant();
this.Loc(); this.Loc();
this.z_Name(); this.z_Name();
this.$nextTick(() => {
this.MaxHeight = window.innerHeight - 220 +"px";
})
}, },
methods: { methods: {
handleEdit(index, row) { handleEdit(index, row) {

View File

@ -22,7 +22,7 @@ const routes=[
meta:{ meta:{
title:'首页' title:'首页'
}, },
component: () => import('../components/duochaxun/Rukuzhengli.vue') component: () => import('../components/Login')
}, },
{ {
path:'/Zhengliqingdan', path:'/Zhengliqingdan',