Browse Source

修改bug

liusungtsun 1 year ago
parent
commit
4134ab9c3a
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/views/GARDENBASEDATA/index.vue

+ 2 - 2
src/views/GARDENBASEDATA/index.vue

@@ -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 = "修改园区内企业基础数据";