dict.js 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. export default {
  2. 类型用途: 'type_use',
  3. 分类编号: 'classify_no',
  4. 分隔符: 'separate',
  5. 任务类型: 'taskCategory',
  6. 流程分类: 'processCategory',
  7. 角度: 'angle',
  8. 提前期单位: 'leadtime_unit',
  9. 检验方案: 'inspection_scheme',
  10. 周转车材质: 'turnover_material',
  11. 生命周期: 'life_cycle',
  12. 网络状态: 'network_status',
  13. 金额单位: 'money_unit',
  14. 时间单位: 'time_unit',
  15. 规则类型: 'rule_type',
  16. 排程类型: 'schedule_type',
  17. 规则状态: 'rule_status',
  18. 规则周期: 'rule_cycle',
  19. 运维计划状态: 'plan_status',
  20. 质保预警参考: 'quality_assurance',
  21. 保质期单位: 'date_unit',
  22. 紧急程度: 'urgent_type',
  23. 委外单状态: 'extrinsic_state',
  24. 报修来源: 'repair_origin',
  25. 报修状态: 'report_repair_status',
  26. 告警级别: 'warning_level',
  27. 告警方式: 'warning_style',
  28. 告警触发条件: 'warning_conditions',
  29. 计划性质: 'nature_plan',
  30. 巡点检工单状态: 'patrolwork_status',
  31. 巡点检周期: 'patrol_cycle',
  32. 维修计划状态: 'repairplan_status',
  33. 干燥区状态: 'dry_status',
  34. 设备生命周期: 'equipment_lifeCycle',
  35. 设备处置方式: 'equipment_Disposal',
  36. 精度等级: 'accuracy_level',
  37. 管理类别: 'manage_type',
  38. 生产类型: 'productionType',
  39. 计量单位: 'measuring_uint',
  40. 工种类型: 'work_type',
  41. 文档类型: 'doc_type',
  42. 工作流任务分配规则的类型: 'bpm_task_assign_rule_type',
  43. 工作流任务分配自定义脚本: 'bpm_task_assign_script',
  44. 流程实例的结果: 'bpm_process_instance_result',
  45. 表计类型: 'meter_type',
  46. 定时任务状态: 'infra_job_status'
  47. };
  48. export const numberList = ['patrol_cycle'];
  49. //主数据分类关联对应常量
  50. export const treeClassifyCodeEnum = {
  51. CHACHE: 'w10-2',
  52. producerType: 'W10',
  53. PROCESSTYPE: 'PROCESS001'
  54. };
  55. // 用能单位集合
  56. export const energyConsumingUnitList = [
  57. {
  58. value: '1',
  59. label: '水',
  60. unit: [
  61. { value: '1', label: 'm³' },
  62. { value: '2', label: 'L' },
  63. { value: '3', label: 'T' }
  64. ],
  65. priceUnit: [
  66. { value: '1', label: '元/m³' },
  67. { value: '2', label: '元/L' },
  68. { value: '3', label: '元/T' }
  69. ]
  70. },
  71. {
  72. value: '2',
  73. label: '电',
  74. unit: [
  75. { value: '1', label: 'kWh' },
  76. { value: '2', label: 'MW' },
  77. { value: '3', label: 'VA' }
  78. ],
  79. priceUnit: [
  80. { value: '1', label: '元/kWh' },
  81. { value: '2', label: '元/MWh' },
  82. { value: '3', label: '元/VA' }
  83. ]
  84. },
  85. {
  86. value: '3',
  87. label: '气',
  88. unit: [
  89. { value: '1', label: 'J' },
  90. { value: '2', label: 'kJ' },
  91. { value: '3', label: 'MJ' },
  92. { value: '4', label: 'GJ' },
  93. { value: '5', label: 'm³' }
  94. ],
  95. priceUnit: [
  96. { value: '1', label: '元/J' },
  97. { value: '2', label: '元/kJ' },
  98. { value: '3', label: '元/MJ' },
  99. { value: '4', label: '元/GJ' },
  100. { value: '5', label: '元/m³' }
  101. ]
  102. }
  103. ];