ac70cec4 by xukangle

Merge branch 'develop' of http://117.78.60.236:8000/csbr-daop/fe-data-asset-management into develop

2 parents b029b3c7 03e5137f
...@@ -350,7 +350,7 @@ const setPropertyFormItemsValue = (info) => { ...@@ -350,7 +350,7 @@ const setPropertyFormItemsValue = (info) => {
350 } else if (item.field == 'address' || item.field == 'socialCreditCode' || item.field == 'registrationDate' || item.field == 'businessLicenseStartDate' || item.field == 'businessLicenseEndDate') {//在会员详情处获取。 350 } else if (item.field == 'address' || item.field == 'socialCreditCode' || item.field == 'registrationDate' || item.field == 'businessLicenseStartDate' || item.field == 'businessLicenseEndDate') {//在会员详情处获取。
351 item.default = tenantDetail.value[item.field]; 351 item.default = tenantDetail.value[item.field];
352 } else if (item.field == 'businessLicenseJson') { 352 } else if (item.field == 'businessLicenseJson') {
353 item.default = tenantDetail.value[item.field] || []; 353 item.default = tenantDetail.value[item.field] ? JSON.parse(tenantDetail.value[item.field]) : [];
354 if (!item.default.length) { 354 if (!item.default.length) {
355 item.visible = false; 355 item.visible = false;
356 } else { 356 } else {
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!