mirror of
https://gitee.com/dromara/go-view.git
synced 2025-04-06 03:58:04 +08:00
25 lines
978 B
TypeScript
25 lines
978 B
TypeScript
import dayjs from 'dayjs'
|
|
import cloneDeep from 'lodash/cloneDeep'
|
|
import { PublicConfigClass } from '@/packages/public'
|
|
import { CreateComponentType } from '@/packages/index.d'
|
|
import { chartInitConfig } from '@/settings/designSetting'
|
|
import { COMPONENT_INTERACT_EVENT_KET } from '@/enums/eventEnum'
|
|
import { interactActions, ComponentInteractEventEnum } from './interact'
|
|
import { InputsDateConfig } from './index'
|
|
|
|
export const option = {
|
|
// 时间组件展示类型,必须和 interactActions 中定义的数据一致
|
|
[COMPONENT_INTERACT_EVENT_KET]: ComponentInteractEventEnum.DATE,
|
|
// 下拉展示
|
|
isPanel: 0,
|
|
dataset: dayjs().valueOf()
|
|
}
|
|
|
|
export default class Config extends PublicConfigClass implements CreateComponentType {
|
|
public key = InputsDateConfig.key
|
|
public attr = { ...chartInitConfig, w: 260, h: 32, zIndex: -1 }
|
|
public chartConfig = cloneDeep(InputsDateConfig)
|
|
public interactActions = interactActions
|
|
public option = cloneDeep(option)
|
|
}
|