joinGain.js 438 B

1234567891011121314151617181920212223242526272829303132
  1. Page({
  2. data: {
  3. },
  4. onLoad() {
  5. },
  6. joinTap(){
  7. wx.showToast({
  8. title: '请联系商家运营了解招招盈',
  9. icon:'none'
  10. })
  11. // wx.showModal({
  12. // title: '提示',
  13. // content: '请联系商家运营了解招招盈',
  14. // showCancel: false,
  15. // confirmText: '确定',
  16. // complete: (res) => {
  17. // if (res.cancel) {
  18. // }
  19. // if (res.confirm) {
  20. // }
  21. // }
  22. // })
  23. }
  24. })