statusList.js 1.1 KB

123456789101112131415161718192021222324252627282930313233
  1. const statusList = [
  2. { name: "启用", code: "1" },
  3. { name: "禁用", code: "0" },
  4. ];
  5. const cg_order_type_options = [
  6. { id: "1", label: "备库单" },
  7. { id: "2", label: "非库存品" },
  8. { id: "3", label: "采反" },
  9. ]
  10. const xs_order_type_options = [
  11. { id: "1", label: "库存品" },
  12. { id: "2", label: "非库存品" },
  13. { id: "3", label: "采购反馈" },
  14. ]
  15. const cg_order_source_options = [
  16. { id: "0", label: "备库单" },
  17. // { id: "1", label: "直接下单" },
  18. { id: "2", label: "竞价转单" },
  19. { id: "3", label: "项目转单" },
  20. { id: "4", label: "平台导入" },
  21. // { id: "5", label: "有赞平台" },
  22. { id: "6", label: "售后补换货" },
  23. ]
  24. const xs_order_source_options = [
  25. // { id: "0", label: "备库单" },
  26. { id: "1", label: "直接下单" },
  27. { id: "2", label: "竞价转单" },
  28. { id: "3", label: "项目转单" },
  29. { id: "4", label: "平台导入" },
  30. // { id: "5", label: "有赞平台" },
  31. { id: "6", label: "售后补换货" },
  32. ]
  33. export { statusList, cg_order_type_options, xs_order_type_options, cg_order_source_options, xs_order_source_options };