1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
| // ========== MALL - 商品模块 ==========
| /**
| * 商品 首页 日期类型
| */
| export enum TimeRangeTypeEnum {
| DAY30 = 1,
| WEEK = 7,
| MONTH = 30,
| YEAR = 365,
| }
|
| /**
| * 商品 SPU 状态
| */
| export const ProductSpuStatusEnum = {
| RECYCLE: {
| status: -1,
| name: '回收站',
| },
| DISABLE: {
| status: 0,
| name: '下架',
| },
| ENABLE: {
| status: 1,
| name: '上架',
| },
| };
|
| // ========== MALL - 营销模块 ==========
| /**
| * 优惠劵模板的有限期类型的枚举
| */
| export const CouponTemplateValidityTypeEnum = {
| DATE: {
| type: 1,
| name: '固定日期可用',
| },
| TERM: {
| type: 2,
| name: '领取之后可用',
| },
| };
|
| /**
| * 优惠劵模板的领取方式的枚举
| */
| export const CouponTemplateTakeTypeEnum = {
| USER: {
| type: 1,
| name: '直接领取',
| },
| ADMIN: {
| type: 2,
| name: '指定发放',
| },
| REGISTER: {
| type: 3,
| name: '新人券',
| },
| };
|
| /**
| * 营销的商品范围枚举
| */
| export const PromotionProductScopeEnum = {
| ALL: {
| scope: 1,
| name: '通用劵',
| },
| SPU: {
| scope: 2,
| name: '商品劵',
| },
| CATEGORY: {
| scope: 3,
| name: '品类劵',
| },
| };
|
| /**
| * 营销的条件类型枚举
| */
| export const PromotionConditionTypeEnum = {
| PRICE: {
| type: 10,
| name: '满 N 元',
| },
| COUNT: {
| type: 20,
| name: '满 N 件',
| },
| };
|
| /**
| * 优惠类型枚举
| */
| export const PromotionDiscountTypeEnum = {
| PRICE: {
| type: 1,
| name: '满减',
| },
| PERCENT: {
| type: 2,
| name: '折扣',
| },
| };
|
| // ========== MALL - 交易模块 ==========
| /**
| * 分销关系绑定模式枚举
| */
| export const BrokerageBindModeEnum = {
| ANYTIME: {
| mode: 1,
| name: '首次绑定',
| },
| REGISTER: {
| mode: 2,
| name: '注册绑定',
| },
| OVERRIDE: {
| mode: 3,
| name: '覆盖绑定',
| },
| };
| /**
| * 分佣模式枚举
| */
| export const BrokerageEnabledConditionEnum = {
| ALL: {
| condition: 1,
| name: '人人分销',
| },
| ADMIN: {
| condition: 2,
| name: '指定分销',
| },
| };
| /**
| * 佣金记录业务类型枚举
| */
| export const BrokerageRecordBizTypeEnum = {
| ORDER: {
| type: 1,
| name: '获得推广佣金',
| },
| WITHDRAW: {
| type: 2,
| name: '提现申请',
| },
| };
| /**
| * 佣金提现状态枚举
| */
| export const BrokerageWithdrawStatusEnum = {
| AUDITING: {
| status: 0,
| name: '审核中',
| },
| AUDIT_SUCCESS: {
| status: 10,
| name: '审核通过',
| },
| AUDIT_FAIL: {
| status: 20,
| name: '审核不通过',
| },
| WITHDRAW_SUCCESS: {
| status: 11,
| name: '提现成功',
| },
| WITHDRAW_FAIL: {
| status: 21,
| name: '提现失败',
| },
| };
| /**
| * 佣金提现类型枚举
| */
| export const BrokerageWithdrawTypeEnum = {
| WALLET: {
| type: 1,
| name: '钱包',
| },
| BANK: {
| type: 2,
| name: '银行卡',
| },
| WECHAT: {
| type: 3,
| name: '微信',
| },
| ALIPAY: {
| type: 4,
| name: '支付宝',
| },
| };
|
| /**
| * 配送方式枚举
| */
| export const DeliveryTypeEnum = {
| EXPRESS: {
| type: 1,
| name: '快递发货',
| },
| PICK_UP: {
| type: 2,
| name: '到店自提',
| },
| };
| /**
| * 交易订单 - 状态
| */
| export const TradeOrderStatusEnum = {
| UNPAID: {
| status: 0,
| name: '待支付',
| },
| UNDELIVERED: {
| status: 10,
| name: '待发货',
| },
| DELIVERED: {
| status: 20,
| name: '已发货',
| },
| COMPLETED: {
| status: 30,
| name: '已完成',
| },
| CANCELED: {
| status: 40,
| name: '已取消',
| },
| };
|
| /** 客服消息类型枚举类 */
| export const KeFuMessageContentTypeEnum = {
| TEXT: 1, // 文本消息
| IMAGE: 2, // 图片消息
| VOICE: 3, // 语音消息
| VIDEO: 4, // 视频消息
| SYSTEM: 5, // 系统消息
| // ========== 商城特殊消息 ==========
| PRODUCT: 10, // 商品消息
| ORDER: 11, // 订单消息
| };
|
| /** Promotion 的 WebSocket 消息类型枚举类 */
| export const WebSocketMessageTypeConstants = {
| KEFU_MESSAGE_TYPE: 'kefu_message_type', // 客服消息类型
| KEFU_MESSAGE_ADMIN_READ: 'kefu_message_read_status_change', // 客服消息管理员已读
| };
|
| // 预设颜色
| export const PREDEFINE_COLORS = [
| '#ff4500',
| '#ff8c00',
| '#ffd700',
| '#90ee90',
| '#00ced1',
| '#1e90ff',
| '#c71585',
| '#409EFF',
| '#909399',
| '#C0C4CC',
| '#b7390b',
| '#ff7800',
| '#fad400',
| '#5b8c5f',
| '#00babd',
| '#1f73c3',
| '#711f57',
| ];
|
|