58 lines
1.3 KiB
TypeScript
58 lines
1.3 KiB
TypeScript
|
import { PublicConfigClass } from '@/packages/public'
|
||
|
import { CreateComponentType } from '@/packages/index.d'
|
||
|
import { AlarmListHazCConfig } from './index'
|
||
|
import dataJson from './data.json'
|
||
|
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 = {
|
||
|
dataset: dataJson,
|
||
|
header: ['报警事件', '时间', '所属企业', '状态'],
|
||
|
headerTextColor: '#B4B4B4',
|
||
|
textColor: '#ffffff',
|
||
|
headerBackgroundColor: '#17325F',
|
||
|
itemBackgroundColor: '#242834',
|
||
|
statusColors: {
|
||
|
// '未解决': '#FF4D4F',
|
||
|
// '已解决': '#ffffff'
|
||
|
'重大风险': 'red'
|
||
|
},
|
||
|
headerHeight: 28,
|
||
|
itemHeight: 28,
|
||
|
fontSize: 12,
|
||
|
title: '近60分钟报警信息',
|
||
|
titleSize: 17,
|
||
|
titleColor: '#ffffff',
|
||
|
iconColor: '#00E5FF',
|
||
|
fontWeight: 'normal',
|
||
|
fontStyle: 'normal',
|
||
|
paddingX: 40,
|
||
|
paddingY: -30,
|
||
|
letterSpacing: 1,
|
||
|
isShowButton: false
|
||
|
}
|
||
|
|
||
|
export default class Config extends PublicConfigClass implements CreateComponentType {
|
||
|
public key = AlarmListHazCConfig.key
|
||
|
public chartConfig = AlarmListHazCConfig
|
||
|
public option = option
|
||
|
|
||
|
|
||
|
}
|