1234567891011121314151617181920212223242526272829303132 |
- Page({
- data: {
-
- },
- onLoad() {
-
- },
- joinTap(){
- wx.showToast({
- title: '请联系商家运营了解招招盈',
- icon:'none'
- })
- // wx.showModal({
- // title: '提示',
- // content: '请联系商家运营了解招招盈',
- // showCancel: false,
- // confirmText: '确定',
- // complete: (res) => {
- // if (res.cancel) {
-
- // }
-
- // if (res.confirm) {
-
- // }
- // }
- // })
- }
- })
|