@dongkboy 1 سال پیش
والد
کامیت
4bc3ca86b2
1فایلهای تغییر یافته به همراه4 افزوده شده و 2 حذف شده
  1. 4 2
      src/views/organizationManagement/organization/organizationDetail.vue

+ 4 - 2
src/views/organizationManagement/organization/organizationDetail.vue

@@ -163,8 +163,10 @@ const columns = [
   {
   {
     prop: "exhibitionScope", label: "营业范围", width: '200', formatter: (row: any) => {
     prop: "exhibitionScope", label: "营业范围", width: '200', formatter: (row: any) => {
       let exhibitionScope = row.exhibitionScope;
       let exhibitionScope = row.exhibitionScope;
-      let sysType = exhibitionScope.join(',');
-      return sysType;
+      if (exhibitionScope) {
+        let sysType = exhibitionScope.join(',');
+        return sysType;
+      }
     }
     }
   },
   },
   { prop: "division", label: "所属地区" },
   { prop: "division", label: "所属地区" },