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

36 lines
805 B

// 钱包相关mock数据
export const walletData = {
// 钱包余额
balance: 1500.00,
// 交易记录
transactions: [
{
id: 1,
type: 'income',
amount: 500.00,
date: '2023-12-10',
desc: '团购分佣'
},
{
id: 2,
type: 'income',
amount: 1000.00,
date: '2023-12-05',
desc: '推广奖励'
},
{
id: 3,
type: 'withdraw',
amount: -200.00,
date: '2023-11-28',
desc: '提现'
}
],
// 提现说明
withdrawRules: [
'单日提现次数上限为5次,单笔提现上限200',
'直接提现至微信账户,无法提现至支付宝'
]
}