敢为人鲜小程序前端代码仓库
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.
 
 
 

60 lines
1.2 KiB

// 未使用优惠券
export const unusedCoupons = [
{
id: '001',
amount: 2,
title: '新人专享优惠券',
validTime: '2025/4/12 23:59',
status: 0 // 0-未使用
},
{
id: '002',
amount: 2,
title: '新人专享优惠券',
validTime: '2025/4/12 23:59',
status: 0
},
{
id: '003',
amount: 2,
title: '新人专享优惠券',
validTime: '2025/4/12 23:59',
status: 0
}
]
// 已使用优惠券
export const usedCoupons = [
{
id: '004',
amount: 5,
title: '周末特惠券',
validTime: '2025/3/30 23:59',
status: 1 // 1-已使用
},
{
id: '005',
amount: 10,
title: '满100减10元',
validTime: '2025/3/15 23:59',
status: 1
}
]
// 已过期优惠券
export const expiredCoupons = [
{
id: '006',
amount: 3,
title: '节日优惠券',
validTime: '2023/12/31 23:59',
status: 2 // 2-已过期
},
{
id: '007',
amount: 8,
title: '店庆活动券',
validTime: '2024/1/15 23:59',
status: 2
}
]