easyui—element-ui框架套用(表格宽度自适应)

外层使用easyui框架中window组件,便于使用最大化功能;内部表格使用element-ui在的el-table,el-table列宽须设置为最小宽度才能在最大化窗口时列表中列宽自适应window窗口的宽度,否则就是扒在一堆的,很难看。

<el-table-column v-for="(item,index) in label"
:key="index"
:prop="item.prop"
:label="item.name"
:min-width="item.width"
align="center"
:show-overflow-tooltip="true"
>
</el-table-column>

字段写法

{
name: "温度值",
prop: "temValue",
width: "100",
type: "em_input",}
没有人能一路单纯到底,但是要记住,别忘了最初的自己!
原文地址:https://www.cnblogs.com/LindaBlog/p/10973498.html