configure.js 511 B

12345678910111213141516171819202122232425
  1. import { basicTwoInputConfigureOptions } from '../../input-configure-options'
  2. export default {
  3. ...basicTwoInputConfigureOptions(),
  4. startPlaceholder: {
  5. label: '开始占位内容',
  6. type: 'input',
  7. limit: 20
  8. },
  9. endPlaceholder: {
  10. label: '结束占位内容',
  11. type: 'input',
  12. limit: 20
  13. },
  14. startDefaultValue: {
  15. label: '开始默认值',
  16. type: 'time'
  17. },
  18. endDefaultValue: {
  19. label: '结束默认值',
  20. type: 'time'
  21. },
  22. required: {},
  23. requiredErrorMessage: {}
  24. }