地图优化

This commit is contained in:
2023-11-24 17:39:04 +08:00
parent 5a5f97c357
commit ca660f9513
11 changed files with 2225 additions and 99 deletions

View File

@@ -44,10 +44,10 @@ export default {
const _data = publicFc.formatMessage(msg)
uni.$emit('onP2PMessage', _data);
store.dispatch('onP2PMessage', _data)
},2000)
},500)
})
}
}, 2000);
}, 1000);
},
onTestMessage: (e) => {

View File

@@ -62,7 +62,7 @@
console.log(location.href)
if (options.imUserSign) {
uni.showLoading({
title: "加载中...",
title: "数据加载中...",
mask: true
});
/*
@@ -84,11 +84,14 @@
if (uni.getStorageSync("initReady") == 1) {
console.log("==========进入首页 initReady为1开始跳转")
clearInterval(timer)
uni.hideLoading();
uni.navigateTo({
url: '../chatWindow/index?userId=' + options.tuid + '&windowType=' + options
.windowType
});
setTimeout(() => {
uni.hideLoading();
uni.navigateTo({
url: '../chatWindow/index?userId=' + options.tuid +
'&windowType=' + options
.windowType
});
}, 3000)
}
}, 500)
}