status.ts 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. //订单来源 - 销售
  2. export const XS_ORDER_SOURCE_OPTIONS = [
  3. { id: "1", label: "库存品" },
  4. { id: "2", label: "非库存品" },
  5. { id: "3", label: "采购反馈" }
  6. ];
  7. //商品来源 - 销售
  8. export const XS_GOOD_SOURCE_OPTIONS = [
  9. // { id: "0", label: "备库单" },
  10. { id: "1", label: "直接下单" },
  11. { id: "2", label: "竞价转单" },
  12. { id: "3", label: "项目转单" },
  13. { id: "4", label: "平台导入" },
  14. { id: "5", label: "有赞平台" },
  15. { id: "6", label: "售后补换货" }
  16. ];
  17. export const CG_ORDER_TYPE_OPTIONS = [
  18. { id: "1", label: "备库单" },
  19. { id: "2", label: "非库存品" },
  20. { id: "3", label: "采反" }
  21. ];
  22. export const STATUS_OPTIONS = [
  23. { id: "1", label: "启用", value: "1", type: "success" },
  24. { id: "0", label: "禁用", value: "0", type: "warning" }
  25. ];
  26. export const ACCOUNT_STATUS_OPTIONS = [
  27. { id: "0", label: "未激活", type: "warning" },
  28. { id: "1", label: "已激活", type: "success" },
  29. { id: "2", label: "已过期", type: "info" }
  30. ];
  31. export const ROLE_OPTIONS = [
  32. { id: "1", value: "1", label: "超级管理员" },
  33. { id: "2", value: "2", label: "运营管理员" },
  34. { id: "3", value: "3", label: "手机端用户" }
  35. ];
  36. export const MENU_TYPE_OPTIONS = [
  37. { id: "1", label: "菜单", value: "1", type: "success" },
  38. { id: "2", label: "页面", value: "2", type: "warning" }
  39. ];
  40. export const MENU_PRICATE_OPTIONS = [
  41. { id: "1", label: "显示", value: "1", type: "primary" },
  42. { id: "0", label: "隐藏", value: "0", type: "warning" }
  43. ];
  44. export const LEVEL_OPTIONS = [
  45. { id: "1", label: "超级管理员", value: "1", type: "success" },
  46. { id: "2", label: "专项管理员", value: "2", type: "primary" },
  47. { id: "3", label: "普通角色", value: "3", type: "warning" }
  48. ];
  49. export const GOOD_OPTIONS = [
  50. { id: "1", label: "商城商品", value: "1", type: "success" },
  51. { id: "2", label: "兑换商品", value: "2", type: "primary" }
  52. ];
  53. export const BATCH_USER_OPTIONS = [
  54. { id: "1", label: "待处理", value: "1", type: "warning" },
  55. { id: "2", label: "处理中", value: "2", type: "primary" },
  56. { id: "3", label: "处理成功", value: "2", type: "success" },
  57. { id: "4", label: "处理失败", value: "2", type: "error" }
  58. ];
  59. export const POWERS = [
  60. "001",
  61. "002",
  62. "003",
  63. "004",
  64. "005",
  65. "006",
  66. "007",
  67. "008",
  68. "009",
  69. "010"
  70. ];