优化通道选择页面样式

This commit is contained in:
648540858
2022-01-17 09:41:43 +08:00
parent b7c16fe6ed
commit ad4afd9d67
4 changed files with 9 additions and 6 deletions

View File

@@ -23,7 +23,7 @@
<el-checkbox @change="shareAllCheckedChange">全部共享</el-checkbox>
</div>
<el-table ref="gbChannelsTable" :data="gbChannels" border style="width: 100%" @selection-change="checkedChange" >
<el-table ref="gbChannelsTable" :data="gbChannels" border style="width: 100%" @selection-change="checkedChange" :height="winHeight">
<el-table-column type="selection" width="55" align="center" fixed > </el-table-column>
<el-table-column prop="channelId" label="通道编号" width="210">
</el-table-column>
@@ -74,7 +74,8 @@ export default {
currentPage: 1,
count: 10,
total: 0,
eventEnanle: false
eventEnanle: false,
winHeight: window.innerHeight - 350,
};
},