TM
2020-12-15 9875ef006a78542088dfa614d81e4dd0e0475655
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<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>