diff --git a/src/packages/components/Charts/IntegratedEnergy/EnergyConsumptionTrend/index.vue b/src/packages/components/Charts/IntegratedEnergy/EnergyConsumptionTrend/index.vue index 8000eda..e49097e 100644 --- a/src/packages/components/Charts/IntegratedEnergy/EnergyConsumptionTrend/index.vue +++ b/src/packages/components/Charts/IntegratedEnergy/EnergyConsumptionTrend/index.vue @@ -1,6 +1,6 @@ diff --git a/src/packages/components/Charts/IntegratedEnergy/TimeSelect/index.ts b/src/packages/components/Charts/IntegratedEnergy/TimeSelect/index.ts new file mode 100644 index 0000000..c876b64 --- /dev/null +++ b/src/packages/components/Charts/IntegratedEnergy/TimeSelect/index.ts @@ -0,0 +1,14 @@ +import { ConfigType, PackagesCategoryEnum, ChartFrameEnum } from '@/packages/index.d' +import { ChatCategoryEnum, ChatCategoryEnumName } from '../../index.d' + +export const TimeSelectConfig: ConfigType = { + key: 'TimeSelect', + chartKey: 'VTimeSelect', + conKey: 'VCTimeSelect', + title: '时间选择器', + category: ChatCategoryEnum.IntegratedEnergy, + categoryName: ChatCategoryEnumName.IntegratedEnergy, + package: PackagesCategoryEnum.CHARTS, + chartFrame: ChartFrameEnum.ECHARTS, + image: 'TimeSelect.png' +} \ No newline at end of file diff --git a/src/packages/components/Charts/IntegratedEnergy/TimeSelect/index.vue b/src/packages/components/Charts/IntegratedEnergy/TimeSelect/index.vue new file mode 100644 index 0000000..8a28e15 --- /dev/null +++ b/src/packages/components/Charts/IntegratedEnergy/TimeSelect/index.vue @@ -0,0 +1,62 @@ + + + + + \ No newline at end of file diff --git a/src/packages/components/Charts/IntegratedEnergy/index.ts b/src/packages/components/Charts/IntegratedEnergy/index.ts index 7c7429d..a75c405 100644 --- a/src/packages/components/Charts/IntegratedEnergy/index.ts +++ b/src/packages/components/Charts/IntegratedEnergy/index.ts @@ -6,12 +6,14 @@ import { WaterSupplySystemConfig } from "./WaterSupplySystem" import { AirSupplySystemConfig } from './AirSupplySystem' import { PowerSupplySystemConfig } from './PowerSupplySystem' import { GasSystemConfig } from './GasSystem' -import { ConstructionIndexConfig } from './ConstructionIndex' +import { ConstructionIndexConfig } from './ConstructionIndex' import { CarbonEmissionConfig } from './CarbonEmission' +import { PowerConsumptionRankingSystemConfig } from "./PowerConsumptionRankingSystem" +import { TimeSelectConfig } from './TimeSelect' export default [ EnergyOverviewConfig, EnergyConsumptionTrendConfig, ConsumptionProportionConfig, FeeOverviewConfig, WaterSupplySystemConfig, AirSupplySystemConfig, PowerSupplySystemConfig, - GasSystemConfig,CarbonEmissionConfig,ConstructionIndexConfig + GasSystemConfig, CarbonEmissionConfig, ConstructionIndexConfig, PowerConsumptionRankingSystemConfig, TimeSelectConfig ]