C端小程序
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 rivejä
586 B

  1. // pages/passCar/passCar.js
  2. Component({
  3. properties: {
  4. },
  5. data: {
  6. },
  7. methods: {
  8. jumpToAdd: function() {
  9. wx.redirectTo({
  10. url: '/pages/addPark/addPark'
  11. });
  12. },
  13. jumpToPay: function() {
  14. wx.redirectTo({
  15. url: '/pages/pay/pay',
  16. })
  17. },
  18. passb: function() {
  19. wx.showToast({
  20. title: '货物在路上~',
  21. })
  22. },
  23. passc: function() {
  24. wx.showToast({
  25. title: '宝宝最可爱~',
  26. })
  27. },
  28. orderPay: function() {
  29. wx.redirectTo({
  30. url: '/pages/pay/pay'
  31. });
  32. }
  33. }
  34. })