dict.js 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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. 时间单位: 'time_unit',
  12. 订单来源: 'order_source',
  13. 订单类型: 'order_type',
  14. 生产状态: 'production_status',
  15. 按单按库: 'order_library',
  16. 紧急程度: 'urgent_type',
  17. 订单计划类型: 'plan_type',
  18. 交付要求: 'require_ments',
  19. 交货状态: 'delivery_status',
  20. 客户状态: 'contact_status',
  21. 企业类型: 'company_category',
  22. 结算方式: 'settlement_mode',
  23. 付款方式: 'pay_way',
  24. 商机来源:'business_opport_code',
  25. 影响力:'influence_level_code',
  26. 态度:'attittude_code',
  27. 商机阶段:'business_stage_code',
  28. 客户联系人状态: 'contact_link_status'
  29. };
  30. export const numberList = [
  31. 'urgent_type',
  32. 'patrol_cycle',
  33. 'order_library',
  34. 'order_type',
  35. 'require_ments',
  36. 'order_source',
  37. 'production_status',
  38. 'plan_type',
  39. 'delivery_status'
  40. ];
  41. //报价管理-审核枚举
  42. export const reviewStatus={
  43. 0:'未提交',
  44. 1:'待审核',
  45. 2:'已审核',
  46. 3:'审核不通过'
  47. }
  48. //报价单-是否接受拆单
  49. export const acceptUnpackoptions=[
  50. {label:'接受',value:1},
  51. {label:'不接受',value:0}
  52. ]