deguodaigou/pages/yue/yue.wxml

25 lines
871 B
Plaintext
Raw Normal View History

2019-12-23 10:04:09 +08:00
<view class="yue">
2019-12-28 16:31:20 +08:00
<yuetop bindrecharge="showrecharge" money="{{money}}"></yuetop>
2019-12-23 10:04:09 +08:00
<view class="title">
2019-12-28 10:13:48 +08:00
<yuetitle></yuetitle>
2019-12-23 10:04:09 +08:00
</view>
2019-12-28 10:13:48 +08:00
<view class="detail" wx:for="{{list}}" wx:key="{{index}}">
<yuedetail money="{{item.user_money}}" date="{{item.date}}" time="{{item.time}}"></yuedetail>
2019-12-23 10:04:09 +08:00
</view>
2019-12-28 16:31:20 +08:00
<van-popup show="{{ show}}" bind:close="onClose" custom-style="border-radius:15rpx;">
<view class="recharge">
<text>¥</text>
2020-01-08 15:18:51 +08:00
<input type="digit" bindinput="number" />
2019-12-28 16:31:20 +08:00
<view bind:tap="recharge">确定</view>
</view>
</van-popup>
2019-12-28 10:13:48 +08:00
<!-- <view class="detail">
2019-12-23 10:04:09 +08:00
<yuedetail></yuedetail>
</view>
2019-12-28 10:13:48 +08:00
<view class="detail">
2019-12-23 10:04:09 +08:00
<yuedetail></yuedetail>
</view>
2019-12-28 10:13:48 +08:00
<view class="detail">
2019-12-23 10:04:09 +08:00
<yuedetail></yuedetail>
2019-12-28 10:13:48 +08:00
</view> -->
2019-12-14 17:01:16 +08:00
</view>