3110a6fe by xukangle

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

2 parents 6dbdc3cb c6a4ca34
...@@ -191,7 +191,7 @@ const getTenantDetail = () => { ...@@ -191,7 +191,7 @@ const getTenantDetail = () => {
191 if (item.field == 'address' || item.field == 'socialCreditCode' || item.field == 'registrationDate' || item.field == 'businessLicenseStartDate' || item.field == 'businessLicenseEndDate') {//在会员详情处获取。 191 if (item.field == 'address' || item.field == 'socialCreditCode' || item.field == 'registrationDate' || item.field == 'businessLicenseStartDate' || item.field == 'businessLicenseEndDate') {//在会员详情处获取。
192 item.default = tenantDetail.value[item.field]; 192 item.default = tenantDetail.value[item.field];
193 } else if (item.field == 'businessLicenseJson') { 193 } else if (item.field == 'businessLicenseJson') {
194 item.default = tenantDetail.value[item.field] || []; 194 item.default = tenantDetail.value[item.field] ? JSON.parse(tenantDetail.value[item.field]) : [];
195 if (!item.default.length) { 195 if (!item.default.length) {
196 item.visible = false; 196 item.visible = false;
197 } else { 197 } else {
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!