|
@@ -852,8 +852,8 @@ export default {
|
|
|
const id = row.id || this.ids;
|
|
|
getGARDENBASEDATA(id).then((response) => {
|
|
|
this.form = response.data;
|
|
|
- this.form.enterpriseStructureValue = this.form.enterpriseStructureValue.split(',')
|
|
|
- this.form.businessEventsValue = this.form.businessEventsValue.split(',')
|
|
|
+ this.form.enterpriseStructureValue = this.form.enterpriseStructureValue?.split(',') || []
|
|
|
+ this.form.businessEventsValue = this.form.businessEventsValue?.split(',') || []
|
|
|
this.open = true;
|
|
|
this.title = "修改园区内企业基础数据";
|
|
|
|