07c30198 by yangwei

登记薄土地用途字段展示错误

1 parent d867a9d0
......@@ -83,6 +83,9 @@
qszt: this.checkList,
}).then((res) => {
if (res.code === 200) {
res.result.length && res.result.forEach(i => {
i.ytmc == 'null' ? i.ytmc = "" : i.ytmc = i.ytmc;
});
this.tableData = res.result;
this.tableData.forEach(item => {
item.sjlx = getSjlx(item.sjlx)
......
......@@ -95,6 +95,9 @@ export default {
this.$endLoading()
if (res.code === 200) {
let { total, records } = res.result;
records.length && records.forEach(i => {
i.ytmc == 'null' ? i.ytmc = "" : i.ytmc = i.ytmc;
});
this.tableData.data = records;
this.tableData.total = total;
}
......