jjb-lc-designable
Version:
基于alibaba-designable源码二次封装的表单设计器。
34 lines • 774 B
JavaScript
import { GlobalRegistry } from 'jjb-lc-designable/core';
export const Card = {
type: 'object',
properties: {
title: {
type: 'string',
'x-decorator': 'FormItem',
'x-component': 'Input'
},
extra: {
type: 'string',
'x-decorator': 'FormItem',
'x-component': 'Input'
},
type: {
type: 'boolean',
enum: GlobalRegistry.getDesignerMessage('settings.cardTypes'),
'x-decorator': 'FormItem',
'x-component': 'Radio.Group',
'x-component-props': {
defaultValue: '',
optionType: 'button'
}
},
bordered: {
type: 'boolean',
'x-decorator': 'FormItem',
'x-component': 'Switch',
'x-component-props': {
defaultChecked: true
}
}
}
};