7b5895c0 by yangwei

不在前端处理

1 parent 819b2d56
......@@ -83,9 +83,6 @@
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,9 +95,6 @@ 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;
}
......