success.js 525 B

123456789101112131415161718192021222324252627
  1. import ad from '../index/ad'
  2. ad({
  3. data: {
  4. buttons: [{
  5. type: 'balanced',
  6. block: true,
  7. text: '确定',
  8. },
  9. {
  10. type: 'light',
  11. block: true,
  12. text: '返回',
  13. }],
  14. },
  15. onClick(e) {
  16. console.log(e)
  17. const { index } = e.detail
  18. index === 0 && wx.showModal({
  19. title: 'Thank you for your support!',
  20. showCancel: !1,
  21. })
  22. index === 1 && wx.navigateBack()
  23. },
  24. })