constants.ts 528 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. export const dictionaryTypeOptions = [
  2. {
  3. value: 1,
  4. label: '灾害防护'
  5. },
  6. {
  7. value: 2,
  8. label: '应急管理'
  9. },
  10. {
  11. value: 3,
  12. label: '交通安全'
  13. },
  14. {
  15. value: 4,
  16. label: '保卫保密'
  17. },
  18. {
  19. value: 5,
  20. label: '生产安全'
  21. },
  22. ]
  23. export enum DictionaryStatus {
  24. disabled = 0,
  25. enabled = 1,
  26. }
  27. export const dictionaryStatusOptions = [
  28. {
  29. value: DictionaryStatus.disabled,
  30. label: '禁用'
  31. },
  32. {
  33. value: DictionaryStatus.enabled,
  34. label: '启用'
  35. },
  36. ]