55 lines
2.7 KiB
Plaintext
55 lines
2.7 KiB
Plaintext
<view class="bg-container">
|
|
<image class="bg-image" src="/static/images/bg_mine.png"></image>
|
|
<view class="content-container">
|
|
<view class="custom-navbar" style="height: {{totalHeight}}px; padding-top: {{statusBarHeight}}px;justify-content: center;">
|
|
<view class="navbar-title" style="color:#532A00;">AI喵著</view>
|
|
</view>
|
|
<view class="container-content">
|
|
<view class="container-box">
|
|
<view class="box-up">
|
|
<view class="balance">
|
|
<view>{{accountInfo.accountMoney/100}}</view>
|
|
<view class="arrow-down"></view>
|
|
</view>
|
|
<view class="balance-box">
|
|
<view class="balance-desc">账户余额</view>
|
|
<view class="balance-btn" bind:tap="doPay">充值</view>
|
|
</view>
|
|
</view>
|
|
<view class="box-down">
|
|
<view>套餐包余额</view>
|
|
<view class="package-bag">
|
|
<view class="package-bag-item">
|
|
<text class="title">全托管</text>
|
|
<text class="num">{{allCount}}</text>
|
|
</view>
|
|
<view class="package-bag-item">
|
|
<text class="title">写材料</text>
|
|
<text class="num">{{materialCount}}</text>
|
|
</view>
|
|
<view class="package-bag-item" bind:tap="doCoupons">
|
|
<view class="icon icon-coupon-ind"></view>
|
|
<view class="title">优惠卷</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="menu-box" style="height: {{contentHeight+190}}rpx;">
|
|
<scroll-view scroll-y style="height: {{contentHeight+190}}rpx;">
|
|
<view class="menu-container">
|
|
<block wx:for="{{menuList}}" wx:key="index">
|
|
<view class="menu-item" bind:tap="itemClick" data-path="{{item.path}}">
|
|
<view class="{{item.icon}}"></view>
|
|
<view class="menu-title">{{item.title}}</view>
|
|
</view>
|
|
<view class="divider-padding"></view>
|
|
</block>
|
|
</view>
|
|
</scroll-view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<mp-dialog title="提示" show="{{showHint}}" buttons="{{buttons}}" bindbuttontap="closeHint">
|
|
<view style="color: black;">{{hintTxt}}</view>
|
|
</mp-dialog> |