|
@@ -9,12 +9,20 @@ export default {
|
|
|
console.log('App Show')
|
|
|
console.log(this.$fileBasUrl, 'appppp$fileBasUrl')
|
|
|
this.connectSocket()
|
|
|
+
|
|
|
+ this.timer = setInterval(() => {
|
|
|
+ wx.request({
|
|
|
+ url: 'http://192.168.0.109:3000/heartbeat?userId=' + wx.getStorageSync('userId'),
|
|
|
+ })
|
|
|
+ }, 5000)
|
|
|
+
|
|
|
// uni.hideTabBar()
|
|
|
},
|
|
|
onHide: function () {
|
|
|
console.log('App Hide')
|
|
|
// close socket
|
|
|
wx.closeSocket()
|
|
|
+ clearInterval(this.timer)
|
|
|
},
|
|
|
globalData: {
|
|
|
fileBasUrl: 'https://mall.rongtongh.cn/storage/img',
|