index.js 275 B

12345678910111213
  1. import ad from '../index/ad'
  2. ad({
  3. onClick(e) {
  4. console.log('onClick', e)
  5. if (e.detail.type === 'right') {
  6. wx.showModal({
  7. title: 'Thank you for your support!',
  8. showCancel: !1,
  9. })
  10. }
  11. },
  12. })