You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
1.2 KiB
Plaintext

9 months ago
<view style='--color--:{{color}}'>
<import src="/components/Lucky/index.wxml"></import>
<loading hidden="{{hidden}}">{{msg}}</loading>
<view class="container">
<view class='cy-top-view'>
<view class='content-center cy-balance-detail' bindtap='cy_tapBalanceDetail'>余额明细</view>
<view class='cy-balance-title'>我的余额</view>
<view class='cy-member-balance'>
<text style='font-size:72rpx;'>¥</text>
<text>{{availableAmount}}</text>
</view>
</view>
<view class='cy-view-line'></view>
<view class='cy-recharge-view'>
<block wx:for="{{list}}" wx:key="index">
<view data-index='{{index}}' class='cy-recharge-item cy-left-float {{item.select?"cy-select-back":""}} ' bindtap='cy_selectReacharge'>
<view class='cy-recharge-item-money'>
<text style='font-size:34rpx;'>¥</text>
<text>{{item.amount}}</text>
</view>
<view class='cy-recharge-item-des cy-ellipsis'>{{item.des}}</view>
</view>
</block>
</view>
<view class='cy-go-recharge' style="background:{{color}}" bindtap='cy_clickRecharge'>去充值</view>
</view>
<template is="lucky" data="{{upWindowList,color,defaultBack}}" wx:if="{{showUpWindow}}"></template>
</view>