configure.js 458 B

1234567891011121314151617
  1. import { basicInputConfigureOptions } from '../../input-configure-options'
  2. export default {
  3. ...basicInputConfigureOptions(),
  4. display: {
  5. type: 'radio',
  6. label: '布局方式',
  7. isButton: true,
  8. options: [{ label: '块级', value: 'block' }, { label: '行内', value: 'inline-block' }]
  9. },
  10. defaultValue: {
  11. type: 'staticOptionsConfig',
  12. label: '静态数据',
  13. otherKey: 'options'
  14. },
  15. required: {},
  16. requiredErrorMessage: {}
  17. }