constants.ts 601 B

123456789101112131415161718192021222324252627282930313233
  1. export const TRAFFIC_REGULATION_SUBPAGES = [
  2. {
  3. label: '管理规定',
  4. value: 'regulation',
  5. },
  6. {
  7. label: '管理通知',
  8. value: 'notice',
  9. },
  10. ];
  11. export enum IS_PUSH {
  12. NOT_PUSH = 0,
  13. PUSH,
  14. }
  15. /**
  16. * 文件类型图标
  17. */
  18. import word from '@/assets/svg/word.svg';
  19. import excel from '@/assets/svg/excel.svg';
  20. import ppt from '@/assets/svg/ppt.svg';
  21. import pdf from '@/assets/svg/pdf.svg';
  22. export const FILE_TYPE_ICON = {
  23. word: word,
  24. excel: excel,
  25. ppt: ppt,
  26. pdf: pdf,
  27. };
  28. //管理权限
  29. export const TRAFFIC_MANAGEMENT_PERMISSION = 'traffic_business_module:rule_notice';