| 123456789101112131415161718192021222324252627282930313233 |
- export const TRAFFIC_REGULATION_SUBPAGES = [
- {
- label: '管理规定',
- value: 'regulation',
- },
- {
- label: '管理通知',
- value: 'notice',
- },
- ];
- export enum IS_PUSH {
- NOT_PUSH = 0,
- PUSH,
- }
- /**
- * 文件类型图标
- */
- import word from '@/assets/svg/word.svg';
- import excel from '@/assets/svg/excel.svg';
- import ppt from '@/assets/svg/ppt.svg';
- import pdf from '@/assets/svg/pdf.svg';
- export const FILE_TYPE_ICON = {
- word: word,
- excel: excel,
- ppt: ppt,
- pdf: pdf,
- };
- //管理权限
- export const TRAFFIC_MANAGEMENT_PERMISSION = 'traffic_business_module:rule_notice';
|