CompTypeEnum.ts 579 B

1234567891011121314151617181920212223242526272829303132
  1. /**
  2. * 组件类型
  3. */
  4. export enum CompTypeEnum {
  5. //单选
  6. Radio = 'radio',
  7. //按钮样式单选
  8. RadioButton = 'radioButton',
  9. //下拉框
  10. Select = 'select',
  11. //列表
  12. List = 'list',
  13. //开关
  14. Switch = 'switch',
  15. //下拉树
  16. SelTree = 'sel_tree',
  17. //分类字典树
  18. CatTree = 'cat_tree',
  19. //下拉搜索
  20. SelSearch = 'search',
  21. //用户现在框
  22. SelUser = 'sel_user',
  23. //复选框
  24. Checkbox = 'checkbox',
  25. //多选列表
  26. ListMulti = 'list_multi',
  27. //区域选择
  28. Pca = 'pca',
  29. Popup = 'popup',
  30. //部门选择
  31. SelDepart = 'sel_depart',
  32. }