12345678910111213141516171819202122 |
- App({
- globalData: {
- showAnimation: true
- },
- // onLaunch: function () {
- // wx.onNetworkStatusChange((res) => {
- // console.log(res, "0000000000000")
- // if (this.data.networkType == "wifi" && res.networkType != "wifi") {
- // this.data.videoContext.pause()
- // wx.showModal({
- // showCancel: false,
- // content: "非wifi网络,是否继续播放",
- // success: (res) => {
- // if (res.confirm) {
- // this.data.videoContext.play()
- // }
- // }
- // })
- // }
- // })
- // }
- })
|