12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- //订单来源 - 销售
- export const XS_ORDER_SOURCE_OPTIONS = [
- { id: "1", label: "库存品" },
- { id: "2", label: "非库存品" },
- { id: "3", label: "采购反馈" }
- ];
- //商品来源 - 销售
- export const XS_GOOD_SOURCE_OPTIONS = [
- // { id: "0", label: "备库单" },
- { id: "1", label: "直接下单" },
- { id: "2", label: "竞价转单" },
- { id: "3", label: "项目转单" },
- { id: "4", label: "平台导入" },
- { id: "5", label: "有赞平台" },
- { id: "6", label: "售后补换货" }
- ];
- export const CG_ORDER_TYPE_OPTIONS = [
- { id: "1", label: "备库单" },
- { id: "2", label: "非库存品" },
- { id: "3", label: "采反" }
- ];
- export const STATUS_OPTIONS = [
- { id: "1", label: "启用", value: "1", type: "success" },
- { id: "0", label: "禁用", value: "0", type: "warning" }
- ];
- export const ACCOUNT_STATUS_OPTIONS = [
- { id: "0", label: "未激活", type: "warning" },
- { id: "1", label: "已激活", type: "success" },
- { id: "2", label: "已过期", type: "info" }
- ];
- export const ROLE_OPTIONS = [
- { id: "1", value: "1", label: "超级管理员" },
- { id: "2", value: "2", label: "运营管理员" },
- { id: "3", value: "3", label: "手机端用户" }
- ];
- export const MENU_TYPE_OPTIONS = [
- { id: "1", label: "菜单", value: "1", type: "success" },
- { id: "2", label: "页面", value: "2", type: "warning" }
- ];
- export const MENU_PRICATE_OPTIONS = [
- { id: "1", label: "显示", value: "1", type: "primary" },
- { id: "0", label: "隐藏", value: "0", type: "warning" }
- ];
- export const LEVEL_OPTIONS = [
- { id: "1", label: "超级管理员", value: "1", type: "success" },
- { id: "2", label: "专项管理员", value: "2", type: "primary" },
- { id: "3", label: "普通角色", value: "3", type: "warning" }
- ];
- export const GOOD_OPTIONS = [
- { id: "1", label: "商城商品", value: "1", type: "success" },
- { id: "2", label: "兑换商品", value: "2", type: "primary" }
- ];
- export const BATCH_USER_OPTIONS = [
- { id: "1", label: "待处理", value: "1", type: "warning" },
- { id: "2", label: "处理中", value: "2", type: "primary" },
- { id: "3", label: "处理成功", value: "2", type: "success" },
- { id: "4", label: "处理失败", value: "2", type: "error" }
- ];
- export const POWERS = [
- "001",
- "002",
- "003",
- "004",
- "005",
- "006",
- "007",
- "008",
- "009",
- "010"
- ];
|