1234567891011121314151617181920212223242526272829303132333435363738 |
- App({
- globalData: {
- showAnimation: true,
- id: null,
- name:null,
- },
- onLaunch(options) {
- // if (wx.getStorageSync('openId')) {
- // wx.request({
- // url: 'http://info.windd.cn:8080/test/applet/isExist',
- // method: "GET",
- // data: {
- // appletsId: wx.getStorageSync('openId')
- // },
- // success: (res) => {
- // console.log(res, "000000000000000000");
- // if(res.data.code == 0){
- // wx.switchTab({
- // url: '/pages/index/index',
- // })
- // }
- // }
- // })
- // } else {
- // }
- },
- onShow(options) {
- // Do something when show.
- },
- onHide() {
- // Do something when hide.
- },
- onError(msg) {
- console.log(msg)
- },
- })
|