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

35 lines
805 B

  1. // 钱包相关mock数据
  2. export const walletData = {
  3. // 钱包余额
  4. balance: 1500.00,
  5. // 交易记录
  6. transactions: [
  7. {
  8. id: 1,
  9. type: 'income',
  10. amount: 500.00,
  11. date: '2023-12-10',
  12. desc: '团购分佣'
  13. },
  14. {
  15. id: 2,
  16. type: 'income',
  17. amount: 1000.00,
  18. date: '2023-12-05',
  19. desc: '推广奖励'
  20. },
  21. {
  22. id: 3,
  23. type: 'withdraw',
  24. amount: -200.00,
  25. date: '2023-11-28',
  26. desc: '提现'
  27. }
  28. ],
  29. // 提现说明
  30. withdrawRules: [
  31. '单日提现次数上限为5次,单笔提现上限200',
  32. '直接提现至微信账户,无法提现至支付宝'
  33. ]
  34. }