<!--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>
|