22 lines
790 B
TypeScript
22 lines
790 B
TypeScript
// 公共类型声明
|
|
import { ConfigType, PackagesCategoryEnum } from '@/packages/index.d'
|
|
// 当前[信息模块]分类声明
|
|
import { ChatCategoryEnum, ChatCategoryEnumName } from '../../index.d'
|
|
|
|
export const PowerConsumptionRankingSystemConfig: ConfigType = {
|
|
// 唯一key
|
|
key: 'PowerConsumptionRankingSystem',
|
|
// 图表组件渲染 Components 格式: V + key
|
|
chartKey: 'VPowerConsumptionRankingSystem',
|
|
// 配置组件渲染 Components 格式: VC + key
|
|
conKey: 'VCPowerConsumptionRankingSystem',
|
|
// 名称
|
|
title: '用电量排行',
|
|
// 子分类目录
|
|
category: ChatCategoryEnum.IntegratedEnergy,
|
|
categoryName: ChatCategoryEnumName.IntegratedEnergy,
|
|
// 包分类
|
|
package: PackagesCategoryEnum.CHARTS,
|
|
// 图片
|
|
image: 'PowerConsumptionRankingSystem.png'
|
|
} |