mock.ts 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. /**
  2. * - 预案类型: zhdd_plan_type;
  3. * - 事件类型: zhdd_incident_type;
  4. * - 事件状态: zhdd_incident_status; - 可用于 事件页面右侧菜单
  5. * - 事件等级: zhdd_incident_level;
  6. * - 事件来源: zhdd_incident_source;
  7. * - 上报单位: zhdd_org_upload; - 可用于预案页面右侧菜单,
  8. * - 应急资源:zhdd_resource - 可用于资源页面右侧菜单
  9. * - 首页标记点: zhdd_screen_type
  10. */
  11. export const zhdd_plan_type = [
  12. { dictLabel: 'I 级预案', dictValue: '1' },
  13. { dictLabel: 'II 级预案', dictValue: '2' },
  14. { dictLabel: 'III 级预案', dictValue: '3' },
  15. { dictLabel: 'IV 级预案', dictValue: '4' },
  16. ];
  17. export const zhdd_incident_status = [
  18. { dictLabel: '预警', dictValue: '1' },
  19. { dictLabel: '待派发', dictValue: '2' },
  20. { dictLabel: '待处置', dictValue: '3' },
  21. { dictLabel: '已归档', dictValue: '4' },
  22. { dictLabel: '已忽略', dictValue: '5' },
  23. ];
  24. export const zhdd_incident_source = [
  25. { dictLabel: '宿迁交通APP', dictValue: '1' },
  26. { dictLabel: '市运输服务中心', dictValue: '2' },
  27. { dictLabel: '市港航事业发展中心', dictValue: '3' },
  28. { dictLabel: '市公共事业发展中心', dictValue: '4' },
  29. { dictLabel: '应急安全处', dictValue: '5' },
  30. ];
  31. export const zhdd_org_upload = [
  32. { dictLabel: '归属部门', dictValue: '1' },
  33. { dictLabel: '应急安全处', dictValue: '2' },
  34. { dictLabel: '市运输服务中心', dictValue: '3' },
  35. { dictLabel: '市港航事业发展中心', dictValue: '4' },
  36. { dictLabel: '市铁路事业发展中心', dictValue: '5' },
  37. { dictLabel: '市公路事业发展中心', dictValue: '6' },
  38. ];
  39. export const zhdd_resource = [
  40. { dictLabel: '应急仓库', dictValue: '1' },
  41. { dictLabel: '应急队伍', dictValue: '2' },
  42. { dictLabel: '应急车辆', dictValue: '3' },
  43. { dictLabel: '应急专家', dictValue: '4' },
  44. { dictLabel: '应急单兵', dictValue: '5' },
  45. ];
  46. export const zhdd_incident_type = [
  47. { dictLabel: '自然灾害', dictValue: '1' },
  48. { dictLabel: '事故灾难', dictValue: '2' },
  49. { dictLabel: '公共卫生事件', dictValue: '3' },
  50. { dictLabel: '社会安全事件', dictValue: '4' },
  51. ];
  52. export const zhdd_incident_level = [
  53. { dictLabel: 'I 级', dictValue: '1' },
  54. { dictLabel: 'II 级', dictValue: '2' },
  55. { dictLabel: 'III 级', dictValue: '3' },
  56. { dictLabel: 'IV 级', dictValue: '4' },
  57. ];