use table, in element-ui in vue when a field data is null, an error will be reported when it passes through that line or the data console. The
code is for reference only.
let List = {loading:false,maxheight:400,data:[{OrgName:null}]}
<el-table
v-loading="List.loading"
ref="singleTableTRD"
:data="List.data"
border
style="width: 100%; margin-top: 10px;"
:max-height="List.maxheight">
<el-table-column
prop="OrgName"
label=""
width="180">
</el-table-column>