diff --git a/dist.zip b/dist.zip index 61bbb67..ee80cbe 100644 Binary files a/dist.zip and b/dist.zip differ diff --git a/src/store/authentication/index.js b/src/store/authentication/index.js index bcb3aef..b57adf5 100644 --- a/src/store/authentication/index.js +++ b/src/store/authentication/index.js @@ -19,10 +19,8 @@ export const useLoginStore = defineStore("loginStore", { ElMessage.success("登录成功!") router.push("/navigation") }, - async loginForRefreshToken() { const res = await refreshToken() - console.log(res) if (res.code == 200) { this.setToken(res.data.accessToken) return true // 刷新成功 diff --git a/src/views/GroupEvolution/components/groupPanel.vue b/src/views/GroupEvolution/components/groupPanel.vue index a875786..8307886 100644 --- a/src/views/GroupEvolution/components/groupPanel.vue +++ b/src/views/GroupEvolution/components/groupPanel.vue @@ -69,9 +69,9 @@ const groupMemberInfoMap = { } const typeTitle = ref({ - 0: props.groupList[0].title[0], - 1: props.groupList[0].title[1], - 6: props.groupList[0].title[2] + 0: props.groupList[0]?.title[0] || "", + 1: props.groupList[0]?.title[1] || "", + 6: props.groupList[0]?.title[2] || "" })