feat(礼包码): 礼包码类型区分

This commit is contained in:
luying
2023-06-14 20:19:25 +08:00
parent 0ed836abe7
commit 662429f7dc
6 changed files with 15 additions and 4 deletions

View File

@@ -599,6 +599,7 @@ export const STATUS = {
GIFT_CODE_HAS_EXPIRED: { code: 31204, simStr: '礼包码已失效' },
GIFT_CODE_NOT_FOUND: { code: 31205, simStr: '未找到该礼包码' },
GIFT_CODE_CHANNEL_ERR: { code: 31206, simStr: '礼包码在您的渠道不生效' },
GIFT_TYPE_ERR: { code: 31207, simStr: '该礼包码不可在此界面使用' },
// 邮件相关 31301-31400
MAIL_HAS_RECEIVE: { code: 31301, simStr: '邮件已领取'},
EQUIP_IS_OVER: { code: 31302, simStr: '装备已超过上限,无法领取' },
@@ -816,4 +817,5 @@ export const SDK_37_ACTIVITY_CODE = {
TIME_IS_EXPIRED: { code: 20008, simStr: '时间戳已过期' },
SERVER_NOT_FOUND: { code: 20009, simStr: '服务器未找到' },
GIFT_CODE_CANNOT_USE: { code: 20010, simStr: '该礼包码不可使用' },
GIFT_TYPE_ERR: { code: 20011, simStr: '该礼包码类型错误' },
}