Commit 9bc2e187 authored by 吴春's avatar 吴春

提交

parent 46017cb4
...@@ -888,7 +888,11 @@ export default { ...@@ -888,7 +888,11 @@ export default {
if (res.data.resultCode == 1) { if (res.data.resultCode == 1) {
this.tableData = res.data.data.pageData; this.tableData = res.data.data.pageData;
this.tableData.map(x=>{ this.tableData.map(x=>{
x.EconomicCapability = JSON.parse(x.EconomicCapability) if(x.EconomicCapability){
x.EconomicCapability = JSON.parse(x.EconomicCapability)}
else{
x.EconomicCapability = [];
}
}) })
this.total = res.data.data.count; this.total = res.data.data.count;
this.loading = false; this.loading = false;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment