dict.js 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. export default {
  2. 类型用途: 'type_use',
  3. 分类编号: 'classify_no',
  4. 分隔符: 'separate',
  5. 任务类型: 'taskCategory',
  6. 流程分类: 'processCategory',
  7. 角度: 'angle',
  8. 生命周期: 'life_cycle',
  9. 网络状态: 'network_status',
  10. 金额单位: 'money_unit',
  11. 仓库: 'warehouse',
  12. 时间单位: 'time_unit',
  13. 处置仓库: 'modificatiWnarehouse',
  14. 干燥区域: 'drying_area',
  15. 日期方式: 'date_method',
  16. 开槽类型:'slotting_type',
  17. 不良品处理类型:'unqualified_products_type',
  18. 返工返修处置 :'return_repair_work_type',
  19. 订单类型: 'order_type',
  20. 不合格品原因:'unqualified_products_reason',
  21. 订单计划类型: 'plan_type',
  22. 异常类型: 'Exception_type',
  23. 请托类型: 'entrust_type',
  24. 文档类型:'doc_type',
  25. 流程实例的结果: 'bpm_process_instance_result',
  26. 工作流任务分配规则的类型: 'bpm_task_assign_rule_type',
  27. 工作流任务分配自定义脚本: 'bpm_task_assign_script',
  28. };
  29. export const numberList = ['date_method'];
  30. //涉密等级
  31. export const secretLevelList = [
  32. {
  33. value: 0,
  34. label: '非密'
  35. },
  36. {
  37. value: 1,
  38. label: '内部'
  39. },
  40. {
  41. value: 2,
  42. label: '秘密'
  43. },
  44. {
  45. value: 3,
  46. label: '机密'
  47. },
  48. {
  49. value: 4,
  50. label: '绝密'
  51. }
  52. ];