个人中心跳转修复
This commit is contained in:
parent
894225cfda
commit
199286ab2e
@ -34,7 +34,7 @@
|
||||
</el-menu>
|
||||
</el-aside>
|
||||
<el-main>
|
||||
<router-view></router-view>
|
||||
<router-view ref="child"></router-view>
|
||||
</el-main>
|
||||
</el-container>
|
||||
</el-container>
|
||||
@ -80,9 +80,9 @@
|
||||
})
|
||||
},
|
||||
goPersonalInfo(userId) {
|
||||
this.$router.push({name: 'personalinfo'});
|
||||
sessionStorage.setItem("userId",userId);
|
||||
setTimeout(()=>{location.reload()},500)
|
||||
this.$refs.child.getUserInfo();
|
||||
this.$router.push({name: 'personalinfo'});
|
||||
},
|
||||
goMore() {
|
||||
this.$message({
|
||||
|
@ -197,7 +197,10 @@
|
||||
}
|
||||
},
|
||||
mounted() {
|
||||
// setInterval(()=>{
|
||||
this.getUserInfo();
|
||||
},
|
||||
methods: {
|
||||
getUserInfo() {
|
||||
let userInfo = JSON.parse(sessionStorage.getItem("userInfo"));
|
||||
if (userInfo.user_id === sessionStorage.getItem("userId")) {
|
||||
this.isOwn = true
|
||||
@ -218,9 +221,7 @@
|
||||
user_id: r.personalInfo.user_id,
|
||||
}
|
||||
})
|
||||
// },1000)
|
||||
},
|
||||
methods: {
|
||||
},
|
||||
deleteLetter(id,type) {
|
||||
this.$confirm('删除该私信?, 是否继续?', '删除', {
|
||||
confirmButtonText: '确定',
|
||||
|
Loading…
Reference in New Issue
Block a user