Commit 572a3992 authored by wangjiankun's avatar wangjiankun

Merge remote-tracking branch 'origin/develop' into develop

parents 82817085 c95b737f
......@@ -88,6 +88,7 @@ export default {
systemName: "天友-户型查询",
avatar: null,
userName:'',
access:'',
};
},
created() {
......@@ -100,7 +101,9 @@ export default {
console.log(res);
if(res.code === '200'){
this.avatar = res.data.headImg;
this.userName = res.data.realName
this.userName = res.data.realName;
this.access = res.data.access;
sessionStorage.setItem('access',(this.access === undefined || this.access === null) ? '' : this.access);
}
}).catch(() => {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment