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