dictDataUtil.ts 1.0 KB

1234567891011121314151617181920212223242526272829303132333435
  1. // 所有的字典类型typeCode都要在这里面写。
  2. const DictDataUtil = {
  3. request_url:
  4. import.meta.env.VITE_APP_BASE_API + "/api/v1/sys/dictData/queryByType/",
  5. dept_tree_url: import.meta.env.VITE_APP_BASE_API + "/api/v1/sys/dept/orgTree",
  6. TYPE_CODE: {
  7. //订单类型
  8. plan_order_type: "plan_order_type",
  9. //订单优先级
  10. plan_order_priority: "plan_order_priority",
  11. //订单状态
  12. plan_order_state: "plan_order_state",
  13. //设备类型
  14. device_type: "device_type",
  15. //设备状态
  16. device_status: "device_status",
  17. //设备运行状态
  18. device_run_status: "device_run_status",
  19. //设备维护频率
  20. device_maintenance_cycle: "device_maintenance_cycle",
  21. //封装方法
  22. packaging_method:"packaging_method",
  23. },
  24. EXPAND_FIELD_TABLE: {
  25. //映射表列表
  26. expand_table_list: "expand_field_table",
  27. //订单计划表
  28. plan_order_info: "plan_order_info",
  29. //映射字段列表
  30. expand_field_list: "expand_field_list",
  31. },
  32. };
  33. export default DictDataUtil;