Files
venue_wx/pages/mine/index.wxml

66 lines
2.4 KiB
Plaintext

<!--pages/mine/index.wxml-->
<header></header>
<view class='container' wx:if="{{members.nickname}}">
<view class='body'>
<view class='header'>
<view class='info-box' bindtap='pushUserInfo'>
<image src='{{members.avatar ? members.avatar : "../../images/avatar.png"}}' mode='aspectFill'></image>
<text>{{members.nickname}}</text>
<view class='info-btn' >个人信息</view>
</view>
<view class='price-box'>
<view class='price-item' bindtap='pushRecharge'>
<view class='number money'>{{members.money}}</view>
<view class='price-title'>
<text>余额</text>
<view style='width:4rpx; height:4rpx; border-radius:50%; background:#7f7e81; margin: 0 6rpx;'></view>
<text>充值</text>
</view>
</view>
<view class='line'></view>
<view class='price-item' bindtap='pushClubCard'>
<view class='number'>{{memberCard}}</view>
<view class='price-title'>
<text>会员卡</text>
</view>
</view>
</view>
</view>
<view class='list'>
<view class='cell' bindtap='pushMyOrder'>
<text>我的预约</text>
<image src='../../images/15@3x.png'></image>
</view>
<view class='cell' bindtap='pushMyEnter'>
<text>篮球订单</text>
<image src='../../images/15@3x.png'></image>
</view>
<view class='cell' bindtap='pushMyBill'>
<text>消费账单</text>
<image src='../../images/15@3x.png'></image>
</view>
<view class='cell' bindtap='pushMyHealth'>
<text>我的报告</text>
<image src='../../images/15@3x.png'></image>
</view>
<!-- <view class='cell' bindtap='pushFacialCapturing'>-->
<!-- <text>人脸采集</text>-->
<!-- <image src='../../images/15@3x.png'></image>-->
<!-- </view>-->
<view class='cell' bindtap='pushFAQ'>
<text>常见问题</text>
<image src='../../images/15@3x.png'></image>
</view>
<view class='cell unLine' bindtap='pushAboutUs'>
<text>关于我们</text>
<image src='../../images/15@3x.png'></image>
</view>
</view>
<view class='logout-btn' bindtap='logout'>退出登录</view>
</view>
</view>
<confirm-dialog title="{{'提示'}}" message="{{'请确认退出登录'}}" bindcancelselect="cancelDeleteDialog" bindconfirmselect="confirmDeleteDialog" wx:if="{{showLogoutDialog}}"></confirm-dialog>