Files
Wx_BLWConfigTools_V01_Prod/pages/mycenter/index.wxml

33 lines
1.1 KiB
Plaintext
Raw Normal View History

2025-12-11 09:50:45 +08:00
<!--pages/mycenter/index.wxml-->
<cu-custom bgColor="bg-gradual-blue">
<view slot="content">个人中心</view>
</cu-custom>
<view class="padding-sm bg-white radius shadow shadow-lg" >
<!-- 用户头像系列 -->
<view class="flex padding flex-wrap" style="width:100%">
<view class="flex align-center justify-center text-center" style="width:100%">
<view class="cu-avatar round xl" style="background-image:url({{userInfo.HeadImg}})"></view>
</view>
<view class="text-lg text-center padding-sm text-green" style="width:100%">{{userInfo.Uid}}</view>
</view>
<!-- 功能区域 -->
<view class="padding-xl">
<form>
<view class="cu-form-group ">
<view class="flex justify-between" style="width:100%">
<view class="text-df">我的反馈</view>
<view class="cu-capsule round">
<view class='cu-tag bg-red light'>{{userInfo.error.length || 0}}</view>
</view>
</view>
</view>
<view class="cu-form-group ">
<view class="flex justify-between" bindtap="LoginOut" style="width:100%">
<view class="text-df">退出登录</view>
</view>
</view>
</form>
</view>
</view>