|
|
|
@ -13,10 +13,10 @@ |
|
|
|
|
<image class='background' src="/static/img/user/topbg.png" mode="aspectFill"></image> |
|
|
|
|
<view class="userInfo"> |
|
|
|
|
<view class="uleft"> |
|
|
|
|
<u-image :src="userInfo.wxAvatar" width="48px" height="48px" radius="50%" @error="imgErr"></u-image> |
|
|
|
|
<u-image :src="userInfo.avatar" width="48px" height="48px" radius="50%" @error="imgErr"></u-image> |
|
|
|
|
</view> |
|
|
|
|
<view class="ucenter"> |
|
|
|
|
<view class="name"><text class="username">{{userInfo.wxName}}</text><!-- <text class="level">等级</text> --></view> |
|
|
|
|
<view class="name"><text class="username">{{userInfo.nick_name}}</text><!-- <text class="level">等级</text> --></view> |
|
|
|
|
</view> |
|
|
|
|
<view class="uright"> |
|
|
|
|
<view class="change" @click="goTo('/pages/user/account/index')"> |
|
|
|
@ -166,8 +166,8 @@ export default { |
|
|
|
|
return { |
|
|
|
|
isLogin:false, //登录 |
|
|
|
|
userInfo:{ |
|
|
|
|
wxAvatar:'/static/img/user/avatar.png', |
|
|
|
|
wxName:'点击登录', |
|
|
|
|
avatar:'/static/img/user/avatar.png', |
|
|
|
|
nick_name:'点击登录', |
|
|
|
|
}, |
|
|
|
|
tabList: [ |
|
|
|
|
{ |
|
|
|
@ -189,11 +189,11 @@ export default { |
|
|
|
|
}, |
|
|
|
|
onShow() { |
|
|
|
|
var _this =this; |
|
|
|
|
var openid = _this.$user.session('openid'); |
|
|
|
|
if(!_this.$com.isNull(openid)) |
|
|
|
|
var token = _this.$user.session('token'); |
|
|
|
|
if(!_this.$com.isNull(token)) |
|
|
|
|
{ |
|
|
|
|
_this.isLogin = true; |
|
|
|
|
//_this.getUserInfo(); |
|
|
|
|
_this.getUserInfo(); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -219,25 +219,17 @@ export default { |
|
|
|
|
getUserInfo() |
|
|
|
|
{ |
|
|
|
|
var _this =this; |
|
|
|
|
var post ={}; |
|
|
|
|
_this.$api.post('ycl/user/wx-info',post,function(rs){ |
|
|
|
|
console.log(rs); |
|
|
|
|
_this.userInfo = rs; |
|
|
|
|
_this.$user.session('lifeData',rs); |
|
|
|
|
var identityinfo = _this.$access.checkidentity(rs); |
|
|
|
|
console.log(identityinfo); |
|
|
|
|
_this.identityinfo = identityinfo; |
|
|
|
|
_this.$user.session('identityinfo',identityinfo); |
|
|
|
|
if(identityinfo.levelVal != 4) |
|
|
|
|
{ |
|
|
|
|
var setmenu = _this.setmenu; |
|
|
|
|
var updatedSetmenu = setmenu.filter(item => item.label !== '代理入驻'); |
|
|
|
|
_this.setmenu = updatedSetmenu; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
},function(err){ |
|
|
|
|
console.log(err); |
|
|
|
|
}); |
|
|
|
|
var userInfo = _this.$user.session('userInfo'); |
|
|
|
|
if(_this.$com.isNull(userInfo.nick_name) ) |
|
|
|
|
{ |
|
|
|
|
userInfo.nick_name = '微信用户'; |
|
|
|
|
} |
|
|
|
|
if(_this.$com.isNull(userInfo.avatar)) |
|
|
|
|
{ |
|
|
|
|
userInfo.avatar = '/static/img/user/avatar.png'; |
|
|
|
|
} |
|
|
|
|
_this.userInfo = userInfo; |
|
|
|
|
|
|
|
|
|
}, |
|
|
|
|
goTo(url) |
|
|
|
|
{ |
|
|
|
|