options.js 491 B

1234567891011121314151617181920212223242526272829303132333435
  1. 'use strict';
  2. module.exports = {
  3. columnType: [
  4. {
  5. label: '字符串',
  6. value: 'String',
  7. },
  8. {
  9. label: '数字',
  10. value: 'Number',
  11. },
  12. {
  13. label: '对象',
  14. value: 'Object',
  15. },
  16. {
  17. label: '集合',
  18. value: 'Array',
  19. },
  20. {
  21. label: 'ObjectId',
  22. value: 'ObjectId',
  23. },
  24. ],
  25. required: [
  26. {
  27. label: '必填',
  28. value: true,
  29. },
  30. {
  31. label: '非必填',
  32. value: false,
  33. },
  34. ],
  35. };