Commit a1b94199cc29956323d39d35fa69ef4bb1fc1e1a

Authored by loveumiko
1 parent 60192cc7

fix: 隐藏看板统计组件

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