diff --git a/src/pages/authority/organization/organizationedit.vue b/src/pages/authority/organization/organizationedit.vue index c6643b8cddd6759ea7b439eb322330334e445625..b1959397887cfb546bd0f2e9638b7abd84852e95 100644 --- a/src/pages/authority/organization/organizationedit.vue +++ b/src/pages/authority/organization/organizationedit.vue @@ -195,7 +195,12 @@ export default { date: data.create_date, fileList: data.picture_path, }; - this.imgList = data.picture_path.split(";"); + if(data.picture_path){ + this.imgList = data.picture_path.split(";"); + }else{ + this.imgList = [] + } + console.log(this.imgList); }) .catch((response) => {}); }, diff --git a/src/pages/workbench/fwgl/serviceEdit.vue b/src/pages/workbench/fwgl/serviceEdit.vue index 4d174d78b6fa718c6a71347fc4baaa21ec0dee64..a2dba11b1d95e7adf8b0013ec29ccc2bda11b488 100644 --- a/src/pages/workbench/fwgl/serviceEdit.vue +++ b/src/pages/workbench/fwgl/serviceEdit.vue @@ -5,7 +5,7 @@ 服务编辑

-
+
基本信息编辑