Commit a1b94199cc29956323d39d35fa69ef4bb1fc1e1a

Authored by loveumiko
1 parent 60192cc7

fix: 隐藏看板统计组件

... ... @@ -137,7 +137,7 @@ export interface PackagesType {
137 137 [PackagesCategoryEnum.CONTROL]: ConfigType[];
138 138 [PackagesCategoryEnum.MAP]: ConfigType[];
139 139 [PackagesCategoryEnum.FLOWMETER]: ConfigType[];
140   - [PackagesCategoryEnum.STATISTICS]: ConfigType[];
  140 + // [PackagesCategoryEnum.STATISTICS]: ConfigType[];
141 141 [PackagesCategoryEnum.OTHER]: ConfigType[];
142 142 }
143 143
... ...
... ... @@ -5,7 +5,7 @@ import { MapList } from './components/Map';
5 5 import { OtherList } from './components/Other';
6 6 // import { PictureList } from './components/Picture';
7 7 import { TextList } from './components/Text';
8   -import { STATISTICSList } from './components/Statistics';
  8 +// import { STATISTICSList } from './components/Statistics';
9 9 import { PackagesCategoryEnum, PackagesType } from './index.type';
10 10
11 11 export const packageList: PackagesType = {
... ... @@ -15,6 +15,6 @@ export const packageList: PackagesType = {
15 15 [PackagesCategoryEnum.CONTROL]: ControlList,
16 16 [PackagesCategoryEnum.MAP]: MapList,
17 17 [PackagesCategoryEnum.FLOWMETER]: FlowmeterList,
18   - [PackagesCategoryEnum.STATISTICS]: STATISTICSList,
  18 + // [PackagesCategoryEnum.STATISTICS]: STATISTICSList,
19 19 [PackagesCategoryEnum.OTHER]: OtherList,
20 20 };
... ...