fix: 接口列表tag报错

This commit is contained in:
chenjianxing 2021-01-08 11:13:50 +08:00
parent 0ab925251c
commit 252f26ae61
1 changed files with 3 additions and 1 deletions

View File

@ -279,7 +279,9 @@ export default {
this.unSelection = response.data.listObject.map(s => s.id);
this.tableData.forEach(row => {
row.showTags = JSON.parse(row.tags);
if (row.tags) {
row.showTags = JSON.parse();
}
})
});
}