JinZHouXiYiJi_DaPin2/resource/Border/BorderBox2/config.ts

53 lines
1.2 KiB
TypeScript
Raw Permalink Normal View History

2023-12-05 13:23:01 +08:00
import type { MetaContainerItem } from 'open-data-v/base'
import { ComponentGroup, CustomComponent, FormType } from 'open-data-v/base'
export const componentName = 'BorderBox2'
class BorderBoxComponent extends CustomComponent {
constructor(id?: string, name?: string) {
super({
component: componentName,
group: ComponentGroup.BORDER,
name: name ? name : '2#边框',
id,
width: 200,
height: 200
})
}
_prop: MetaContainerItem[] = [
{
label: '基础配置',
prop: 'base',
children: [
{
prop: 'color1',
label: '边框颜色1',
type: FormType.COLOR,
props: {
defaultValue: '#4fd2dd'
}
},
{
prop: 'color2',
label: '边框颜色2',
type: FormType.COLOR,
props: {
defaultValue: '#235fa7'
}
},
{
prop: 'backgroundColor',
label: '底色',
type: FormType.COLOR,
props: {
defaultValue: '#00000000'
}
}
]
}
]
_style: MetaContainerItem[] = []
}
export default BorderBoxComponent