fix: 新功能增加,原有bug修复。

This commit is contained in:
tianyongbao
2024-06-21 20:30:02 +08:00
parent 7ce6161b01
commit c8b5697264
36 changed files with 5178 additions and 516 deletions

View File

@@ -93,14 +93,13 @@ const userStore = useUserStore()
const name = userStore.name;
const version = config.appInfo.version;
const avatar = ref(userStore.avatar);
const avatar = ref(window.location.protocol + '//' + window.location.hostname + ':' + window.location.port+userStore.avatar);
const windowHeight = ref(uni.getSystemInfoSync().windowHeight - 50);
const popup = ref(null);
uni.$on('refresh', () => {
avatar.value = userStore.avatar;
avatar.value = window.location.protocol + '//' + window.location.hostname + ':' + window.location.port+userStore.avatar;
})
function handleToInfo() {
uni.navigateTo({
url: '/pages_mine/pages/info/index'