update:暂存金币相关

This commit is contained in:
2026-08-19 10:14:17 +08:00
parent d60c32506f
commit 63f3cada0f
36 changed files with 1303 additions and 2 deletions
+114
View File
@@ -0,0 +1,114 @@
export const coinSummary = {
storeName: "广州大学城北旗舰体验店",
cumulative: 9999,
available: 8800,
};
export const quickMenus = [
{
key: "rules",
label: "金币规则",
icon: "/static/coin/icon-rules.png",
},
{
key: "earningRecords",
label: "获取明细",
icon: "/static/coin/icon-earning-records.png",
},
{
key: "exchangeRecords",
label: "兑换记录",
icon: "/static/coin/icon-exchange-records.png",
},
{
key: "nearbyStores",
label: "附近门店",
icon: "/static/coin/icon-nearby-store.png",
},
];
export const rewardProducts = Array.from({ length: 6 }, (_, index) => ({
id: index + 1,
name: "射灵公仔",
cost: 3000,
stock: 100,
background: "/static/coin/product-card-bg.png",
image: "/static/coin/product-card-item.png",
}));
export const coinRules = [
"金币获取规则:登录个人账号后,使用射灵智能弓体验个人训练、好友约战、排位赛三种模式,每射出一箭并判为有效,即可根据该箭的实际环数,获得等额金币。如:用户在个人训练中,射出一箭并获得9环,即获得9金币。",
"累计金币:累计金币为用户历史获得的所有金币,不会过期、不受兑换影响。",
"可兑换金币:可兑换金币为用户可用于兑换奖品的金币,用户使用金币兑换相应礼品后,将扣除相应金币。同时,可兑换金币有1年有效期,自金币获得之日起开始计算。",
"射灵星球官方可能会不定期举办各类活动,有机会额外获得更多机会,具体以实际公告为准。",
"金币以每个门店/俱乐部为单位独立计算与兑换核销,暂不支持跨门店、跨俱乐部计算,具体以各门店实际公告为准。",
];
export const earningRecords = Array.from({ length: 5 }, (_, index) => ({
id: index + 1,
date: "2026-07-12",
time: "13:23:43",
type: "个人训练-射箭8环",
amount: "+8",
}));
export const exchangeRecords = [
{
id: 1,
content: "苹果Airpods Pro耳机一对",
type: "个人兑换",
date: "2026-07-12",
time: "13:23:43",
amount: "-2000",
},
{
id: 2,
content: "金币过期",
type: "金币过期",
date: "2026-07-12",
time: "13:23:43",
amount: "-1500",
},
{
id: 3,
content: "苹果Airpods Pro耳机一对",
type: "队伍兑换",
date: "2026-07-12",
time: "13:23:43",
amount: "-1500",
},
{
id: 4,
content: "人工扣除",
type: "人工扣除",
date: "2026-07-12",
time: "13:23:43",
amount: "-1500",
},
];
export const nearbyStore = {
name: "射灵星球智能弓体验馆-广州大学城北店",
address: "广州市番禺区大学城青蓝街1栋b4(广州大学城北)",
phone: "030-23392934",
hours: "10:00-20:00",
image: "/static/coin/store-photo.png",
};
export const productDetail = {
name: "射灵星球定制毛巾两条",
cumulative: 9999,
stock: 10,
backgrounds: [
"/static/coin/product-hero-bg.png",
"/static/coin/product-hero-bg.png",
"/static/coin/product-hero-bg.png",
"/static/coin/product-hero-bg.png",
],
image: "/static/coin/product-hero-item.png",
descriptions: [
"本礼品具体型号为 苹果Airpods Pro二代无线降噪耳机(国行版)。颜色随机,不支持指定。",
"兑换请当场进行开箱验货,一经兑换,不支持无理由退换。",
"本次活动礼品为促销赠品,保证全新完好,具备正常使用功能。礼品非售卖商品,不支持单独退换;若收到礼品存在质量瑕疵,请收货7 日内凭完整包装联系客服核实处理,提供维修 / 更换方案。品牌赠品官方保修请参照品牌厂商政策。",
],
};