init project

This commit is contained in:
limqhz
2020-06-21 16:27:58 +08:00
commit e8fe10b5fb
178 changed files with 9964 additions and 0 deletions

57
pages/mine/index.wxml Normal file
View File

@@ -0,0 +1,57 @@
<!--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='pushMyBill'>
<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>