<view class="user-center-page">
|
<view class="top" style="{{background:userStyle.gradientColor}}">
|
<cover-image src="../../static/img/backcircl.png" class="img"/>
|
</view>
|
<view class="userInfo">
|
<view class="left">
|
<image mode="scaleToFill" class="avatar" src="../../static/img/touxiang.png"/>
|
<view class="info">
|
<view style="margin-bottom:6px">{{userInfo.name}}</view>
|
<view>{{userInfo.mblNo}}</view>
|
</view>
|
<!--<avatar className="avatar-class" src="../../static/img/logo.png" size="lg" name="用户名" desc="摘要描述" shape="circle" /> -->
|
</view>
|
<view class="right">
|
<view class="name" style="text-align:right">
|
{{userInfo.orgName}}
|
</view>
|
<button class="btn" onTap="changeUser" style="{{color:userStyle.defaultColor}}">
|
切换身份
|
</button>
|
</view>
|
</view>
|
<view class="functionList" a:for="{{functionList}}" a:key="{{index}}" data-index="{{index}}" onTap="goNext">
|
<view class="left-fn">
|
<text class="iconfont {{item.icon}}" style="{{color:userStyle.defaultColor,'font-size': '20px','margin-right': '12px'}}"></text>
|
<text>{{item.name}}</text>
|
</view>
|
<view class="right-fn">
|
<text class="iconfont iconarrow-right" style="'font-size': '12px'"></text>
|
</view>
|
</view>
|
<modal show="{{modalOpened}}" showClose="{{false}}" className="mode">
|
确定退出此账号吗?
|
<view slot="footer" class="footer-view">
|
<button onTap="onCancel" style="height:50px;line-height:50px;width:50%;border: 0;border-right:1px #EEEEEE solid">
|
取消
|
</button>
|
<button onTap="onDetermine" style="height:50px;line-height:50px;width:50%;border: 0;">
|
确定
|
</button>
|
</view>
|
</modal>
|
</view>
|