mirror of
https://gitee.com/beijing_hongye_huicheng/lilishop-ui.git
synced 2026-08-07 03:15:01 +08:00
feat(buyer): 添加电子卡券(E_COUPON)支持
- 新增 E_COUPON 商品类型,支持电子卡券的展示与购买逻辑 - 优化商品详情页,调整促销、库存和购买按钮逻辑以适应电子卡券 - 增加卡密信息展示与管理功能,支持商家端卡池管理 - 更新相关页面以处理电子卡券的特殊逻辑,如免地址、隐藏优惠券等
This commit is contained in:
18
manager/src/constants/cardKey.js
Normal file
18
manager/src/constants/cardKey.js
Normal file
@@ -0,0 +1,18 @@
|
||||
/**
|
||||
* 卡密商品(E_COUPON)— 平台端订单展示用常量
|
||||
*
|
||||
* 平台不管理卡池明文(S-04);本模块仅用于订单详情卡密状态文案。
|
||||
*
|
||||
* @author Mike
|
||||
* @date 2026-07-31
|
||||
*/
|
||||
/** 卡密状态文案(与后端 CardKeyStatusEnum 一致) */
|
||||
export const CARD_KEY_STATUS_TEXT = {
|
||||
UNUSED: "未使用",
|
||||
ALLOCATED: "已分配",
|
||||
VOIDED: "已作废",
|
||||
};
|
||||
|
||||
export function formatCardKeyStatus(status) {
|
||||
return CARD_KEY_STATUS_TEXT[status] || status || "—";
|
||||
}
|
||||
Reference in New Issue
Block a user