wujingjing
2024-08-12 9de6cf5226f7df076449a39c5adeb431b12fe923
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
<!--pages/my/my.wxml-->
<view class="h-full p-25" style="background:linear-gradient(#e5effc,#f9fbfc 20%) ;">
 
  <view>
    <view class="flex-items-center">
      <text class="ywicon icon-morentouxiang bg-gray-300 rounded-full text-gray-500 mr-20" style="font-size: 73rpx;"></text>
      <text class="font32 font-bold">{{userName}}</text>
    </view>
    <fui-list marginTop="40">
      <fui-list-cell highlight="{{false}}">账号名
 
        <text class="text-gray-400">{{userName}}</text>
 
      </fui-list-cell>
      <!-- <fui-list-cell arrow>
        <text>修改密码</text>
      </fui-list-cell> -->
      <fui-list-cell>
        <text>手机号</text>
        <text class="text-gray-400">{{phoneNumber || '未绑定'}}</text>
      </fui-list-cell>
      <!-- <fui-list-cell arrow>
        <text>使用浏览器登录</text>
      </fui-list-cell> -->
      <!-- <fui-list-cell arrow>
        <text>切换账号密码登录</text>
      </fui-list-cell> -->
    </fui-list>
    <van-button block custom-class="mt-18 font30" bind:tap="logout">退出登录</van-button>
 
  </view>
</view>