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.

16 lines
216 B

  1. Page({
  2. data: {
  3. money:'',
  4. url:'/pages/main/solution/solution'
  5. },
  6. onLoad(e){
  7. this.setData({
  8. money: e.money
  9. })
  10. },
  11. reBack(){
  12. wx.switchTab({
  13. url: '/pages/main/main',
  14. })
  15. }
  16. })