dict.js 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. export default {
  2. 单位: 'unit',
  3. 条码分类: 'BARCODE',
  4. 资产类型: 'ASSECTSTYPE',
  5. 物品类型: 'classify',
  6. 产地: 'purchase_origin',
  7. 物品机型: 'product_model_key',
  8. 物品颜色: 'product_color_key',
  9. 流程实例的结果: 'bpm_process_instance_result',
  10. 质检计划类型: 'inspection_plan_type',
  11. }
  12. //发货审核状态
  13. export const reviewStatusEnum = [{
  14. value: 0,
  15. label: '未提交'
  16. },
  17. {
  18. value: 1,
  19. label: '审核中'
  20. },
  21. {
  22. value: 2,
  23. label: '已审核'
  24. },
  25. {
  26. value: 3,
  27. label: '审核未通过'
  28. },
  29. {
  30. value: 7,
  31. label: '作废'
  32. },
  33. ];
  34. //商品级别
  35. export const levelList = [{
  36. value: '1',
  37. text: '特级'
  38. },
  39. {
  40. value: '2',
  41. text: '一级'
  42. },
  43. {
  44. value: '3',
  45. text: '二级'
  46. },
  47. {
  48. value: '4',
  49. text: '三级'
  50. }
  51. ];
  52. //属性类型
  53. export const lbjtList = {
  54. 1: '自制件',
  55. 2: '采购件',
  56. 3: '外协件',
  57. 4: '受托件'
  58. };
  59. //需求类型
  60. export const requirementSourceType = [
  61. { value: '1', text: '生产性物资采购' },
  62. { value: '2', text: '非生产性物资采购' },
  63. { value: '3', text: '带料生产委外' },
  64. { value: '4', text: '不带料生产委外' },
  65. { value: '5', text: '研发委外' },
  66. { value: '6', text: '外协自供料采购' },
  67. { value: '7', text: '外协客供料采购' },
  68. { value: '8', text: '退货委外' },
  69. { value: '9', text: '委外返修' },
  70. { value: '99', text: '其他' }
  71. ];
  72. // 列表维度
  73. export const dimensionType = [
  74. { value: 1, text: '物品维度' },
  75. { value: 2, text: '批次维度' },
  76. { value: 3, text: '包装维度' }
  77. ];