You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
452 B
24 lines
452 B
// 咨询的商品/订单类型
|
|
export const CUSTOMER_DETAIL_TYPE = {
|
|
GOOD: 1,
|
|
ORDER: 2
|
|
};
|
|
|
|
// 咨询的内容类型
|
|
export const CUSTOMER_SUPPORT_TYPE = {
|
|
DATA: 5,// 资料类型
|
|
SPECIAL: 1,// 专题课程类型
|
|
SOURCE: 8,//素材
|
|
STORE_GOOD: 2, // 商城商品
|
|
|
|
STORE_GOOD_ORDER: 2, // 商城商品订单
|
|
};
|
|
|
|
export const CHAT_MSN_TYPE = {
|
|
TEXT: 1,
|
|
EMOJI: 2,
|
|
IMG: 3,
|
|
VOICE: 4,
|
|
GOOD: 5,
|
|
ORDER: 21
|
|
} |