Browse Source

拉取离线消息超时时间改成60s

master
xsx 8 months ago
parent
commit
e4d2244ff2
  1. 4
      im-uniapp/App.vue

4
im-uniapp/App.vue

@ -124,14 +124,14 @@ export default {
return this.$http({
url: "/message/private/loadOfflineMessage?minId=" + minId,
method: 'GET',
timeout: 300000
timeout: 60000
})
},
pullGroupOfflineMessage(minId) {
return this.$http({
url: "/message/group/loadOfflineMessage?minId=" + minId,
method: 'GET',
timeout: 300000
timeout: 60000
})
},
handlePrivateMessage(msg) {

Loading…
Cancel
Save