外层使用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",}