Commit 456a258e authored by “yiyousong”'s avatar “yiyousong”

fix: 修复应用数据列表展示偶尔有字段不能显示的问题

parent 4b16ad34
...@@ -196,7 +196,7 @@ export default { ...@@ -196,7 +196,7 @@ export default {
let row = record.appInfoFieldList.find( let row = record.appInfoFieldList.find(
(item) => item.fieldCode == v.fieldCode (item) => item.fieldCode == v.fieldCode
); );
if (row.fieldTypeValue && !row.serviceApiParams) { if (row && row.fieldTypeValue && !row.serviceApiParams) {
let fieldTypeValue = JSON.parse(row.fieldTypeValue); let fieldTypeValue = JSON.parse(row.fieldTypeValue);
return fieldTypeValue[text]; return fieldTypeValue[text];
} else { } else {
......
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