dict.js 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. export default {
  2. 类型用途: 'type_use',
  3. 分类编号: 'classify_no',
  4. 分隔符: 'separate',
  5. 任务类型: 'taskCategory',
  6. 流程分类: 'processCategory',
  7. 角度: 'angle',
  8. 生命周期: 'life_cycle',
  9. 网络状态: 'network_status',
  10. 计量单位: 'measuring_uint',
  11. 金额单位: 'money_unit',
  12. 仓库: 'warehouse',
  13. 时间单位: 'time_unit',
  14. 处置仓库: 'modificatiWnarehouse',
  15. 干燥区域: 'drying_area',
  16. 按单按库: 'order_library',
  17. 日期方式: 'date_method',
  18. 开槽类型: 'slotting_type',
  19. 不良品处理类型: 'unqualified_products_type',
  20. 返工返修处置: 'return_repair_work_type',
  21. 订单类型: 'order_type',
  22. 不合格品原因: 'unqualified_products_reason',
  23. 订单计划类型: 'plan_type',
  24. 异常类型: 'Exception_type',
  25. 请托类型: 'entrust_type',
  26. 退料场景: 'returnScenario',
  27. 精度等级: 'accuracy_level',
  28. 质检计划类型: 'inspection_plan_type',
  29. 处置状态: 'dispose_status',
  30. 紧急程度: 'urgent_type',
  31. 记录规则类型: 'record_sheet',
  32. 检查有效期单位: 'validity_unit',
  33. 事项类型: 'record_rules_item_type',
  34. 报工类型: 'record_rules_report_work_type',
  35. 执行方式: 'produce_task_config_execute_method',
  36. 记录规则报工类型: 'record_rules_report_work_type',
  37. 记录规则执行方式: 'produce_task_config_execute_method',
  38. 记录规则事项类型: 'record_rules_item_type',
  39. 规则类型: 'rule_type',
  40. 规则状态: 'rule_status',
  41. 规则周期: 'rule_cycle',
  42. 流程实例的结果: 'bpm_process_instance_result',
  43. 取样类型: 'quality_method_code',
  44. 放行类型: 'checklist_type',
  45. 文档类型: 'doc_type',
  46. 工艺参数单位: 'parameter_code',
  47. 巡点检周期: 'patrol_cycle',
  48. 业务类型: 'business_type',
  49. 行业类别: 'industry_type',
  50. 记录表模板样式: 'record_template_style',
  51. 数学字符: 'mathematical_symbol'
  52. };
  53. export const numberList = ['date_method'];
  54. export const reviewStatus = {
  55. 0: '未提交',
  56. 1: '审核中',
  57. 2: '已审核',
  58. 3: '审核不通过'
  59. };
  60. export const produceTypeList = [
  61. {
  62. label: '加工',
  63. value: 1
  64. },
  65. {
  66. label: '装配',
  67. value: 3
  68. }
  69. ];
  70. // 质检方案状态
  71. export const inspectionProjectStatus = [
  72. {
  73. label: '待检',
  74. value: 0,
  75. type: 'info'
  76. },
  77. {
  78. label: '已检',
  79. value: 1,
  80. type: 'success'
  81. },
  82. {
  83. label: '已派单',
  84. value: 2,
  85. type: 'warning'
  86. },
  87. {
  88. label: '已请托',
  89. value: 3,
  90. type: 'warning'
  91. },
  92. {
  93. label: '检验中',
  94. value: 4,
  95. type: ''
  96. }
  97. ];