提交 6662906e 编写于 作者: Q qin_jun_yan

Data tracing issue was modified. If the value of the object popup is null,...

Data tracing issue was modified. If the value of the object popup is null, modify it to display None in the popup table
上级 710ee695
......@@ -1914,7 +1914,11 @@ export default {
Object.keys(dataObj[key]).forEach((k, j) => {
const item = {};
item.key = k;
item.value = dataObj[key][k];
if (dataObj[key][k] === null) {
item.value = 'None';
} else {
item.value = dataObj[key][k];
}
item.id =
`${new Date().getTime()}` + `${this.$store.state.tableId}`;
this.$store.commit('increaseTableId');
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册