ts_aimz/pages/mine/mineIndex/mine.wxml

49 lines
2.3 KiB
Plaintext
Raw Normal View History

2025-03-24 18:05:54 +08:00
<view class="bg-container">
2025-03-31 18:23:29 +08:00
<image class="bg-image" src="/static/images/bg_mine.png"></image>
2025-03-24 18:05:54 +08:00
<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">
2025-03-31 18:23:29 +08:00
<view>{{accountInfo.accountMoney/100}}</view>
2025-03-24 18:05:54 +08:00
<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>
2025-03-31 18:23:29 +08:00
<text class="num">{{allCount}}</text>
2025-03-24 18:05:54 +08:00
</view>
<view class="package-bag-item">
<text class="title">写材料</text>
2025-03-31 18:23:29 +08:00
<text class="num">{{materialCount}}</text>
2025-03-24 18:05:54 +08:00
</view>
2025-03-31 18:23:29 +08:00
<view class="package-bag-item" bind:tap="doCoupons">
2025-03-26 18:15:07 +08:00
<view class="icon icon-coupon-ind"></view>
2025-03-24 18:05:54 +08:00
<view class="title">优惠卷</view>
</view>
</view>
2025-03-21 18:05:54 +08:00
</view>
</view>
2025-04-03 10:44:12 +08:00
<view class="menu-box" style="height: {{contentHeight+180}}rpx;">
<scroll-view scroll-y style="height: {{contentHeight+180}}rpx;">
<view>
<view wx:for="{{menuList}}" wx:key="index" class="menu-item">
<image src="{{item.icon}}" class="menu-icon"></image>
<view class="menu-title">{{item.title}}</view>
</view>
</view>
</scroll-view>
2025-03-21 18:05:54 +08:00
</view>
</view>
</view>
</view>