<el-table-column v-for="col in tableColumns.filter(coloum => checkList.indexOf(coloum.label) !== -1)"
:key="col.label+col.prop"
:prop="col.prop"
:label="col.label"
align="center"
:formatter="if_null"
/>
methods: {
if_null(row, column, cellValue) {
return cellValue || '---'
},
}