go-viee-fetch-Demo/src/packages/components/Charts/HazardousChemicalsSpace/AlarmListHazC/config.ts
Free-sss f9e910ed88 refactor(charts): 调整图表组件的默认尺寸
- 修改了多个图表组件的宽度和高度属性
- 优化了部分组件的样式,如移除背景色
2025-09-08 17:53:35 +08:00

52 lines
1.4 KiB
TypeScript

import { PublicConfigClass } from '@/packages/public'
import { CreateComponentType } from '@/packages/index.d'
import { AlarmListHazCConfig } from './index'
import dataJson from './data.json'
import { chartInitConfig } from '@/settings/designSetting'
import { cloneDeep } from 'lodash'
export enum FontWeightEnum {
NORMAL = '常规',
BOLD = '加粗',
}
export enum FontStyleEnum {
NORMAL = '常规',
ITALIC = '斜体',
}
export const FontWeightObject = {
[FontWeightEnum.NORMAL]: 'normal',
[FontWeightEnum.BOLD]: 'bold',
}
export const FontStyleObject = {
[FontStyleEnum.NORMAL]: 'normal',
[FontStyleEnum.ITALIC]: 'italic',
}
export const option = {
sceneCode: 'T04',
dataset: dataJson,
header: ['报警事件', '时间', '所属企业', '状态'],
headerTextColor: '#B4B4B4',
textColor: '#ffffff',
headerBackgroundColor: '#17325F',
itemBackgroundColor: '#242834',
statusColors: {
// '未解决': '#FF4D4F',
// '已解决': '#ffffff'
'重大风险': 'red'
},
headerHeight: 28,
itemHeight: 28,
fontSize: 12,
titleText: '近60分钟报警信息',
}
export default class Config extends PublicConfigClass implements CreateComponentType {
public key = AlarmListHazCConfig.key
public chartConfig = AlarmListHazCConfig
public option = cloneDeep(option)
public attr = { ...chartInitConfig, x: 0, y: 0, w: 500, h: 325, zIndex: 1 }
}