Browse Source

小区管理列表高度

shibei_master
jiangyy 4 years ago
parent
commit
1a578494dd
  1. 2
      src/views/modules/base/community/buildTable.vue
  2. 2
      src/views/modules/base/community/communityTable.vue
  3. 8
      src/views/modules/base/community/roomTable.vue

2
src/views/modules/base/community/buildTable.vue

@ -180,7 +180,7 @@ export default {
computed: {
tableHeight () {
return (this.clientHeight - 220)
return (this.clientHeight - 300)
},

2
src/views/modules/base/community/communityTable.vue

@ -185,7 +185,7 @@ export default {
computed: {
tableHeight () {
return (this.clientHeight - 320)
return (this.clientHeight - 300)
},
rowHeight () {

8
src/views/modules/base/community/roomTable.vue

@ -63,6 +63,7 @@
:header-cell-style="{background:'#2195FE',color:'#FFFFFF'}"
v-loading="tableLoading"
border
:height="tableHeight"
style="width: 100%">
<el-table-column prop="houseName"
label="房屋名称"
@ -189,9 +190,12 @@ export default {
},
computed: {
rowHeight () {
return (this.clientHeight - 200) + 'px'
tableHeight () {
return (this.clientHeight - 300)
},
...mapGetters(['clientHeight'])
},
methods: {

Loading…
Cancel
Save