53 lines
2.5 KiB
Plaintext
53 lines
2.5 KiB
Plaintext
<!--pages/customer/score/index.wxml 20250624-->
|
|
<view class="container" style="min-height:100vh; overflow:hidden;">
|
|
<view class="text-center pt50 pb50">
|
|
<view class="font-60 text-bold text-italic color-ff0000">{{leftMoney}}</view>
|
|
<view class="color-444 font-28 mt-20">余额</view>
|
|
</view>
|
|
<view class="ml30 mr30 pb40">
|
|
<view class="bg-fff ulib-r10 box-shadow-000-10-10 pb30">
|
|
<view class="relative fn-flex text-center">
|
|
<view class="fn-flex-item pt30 pb30">
|
|
<view class="font-40">{{sumRechangeMoney}}</view>
|
|
<view class="font-26 color-666 mt5">充值</view>
|
|
</view>
|
|
<view class="fn-flex-item pt30 pb30">
|
|
<view class="font-40">{{sumUseMoney}}</view>
|
|
<view class="font-26 color-666 mt5">消耗</view>
|
|
</view>
|
|
<view class="bg-picker absolute top-0 box-center bg-no-repeat bg-size-cover bg-pos-cente font-26" style="width:230rpx;height:50rpx;line-height:50rpx;">
|
|
<picker mode="date" fields="month" value="{{cur_month}}" start="2015-09" end="2026-09" bindchange="bindDateChange">
|
|
<view class="color-666"><text class="iconfont icon-qianhetong"></text><text class="ml10">{{cur_month||'请选择月份'}}</text></view>
|
|
</picker>
|
|
</view>
|
|
</view>
|
|
|
|
<view class="pl30 pr30 pt30 pb60">
|
|
<view class="fn-flex font-28">
|
|
<block wx:for="{{tab_list}}" wx:key="index">
|
|
<view bind:tap="changeTab" data-index="{{index}}" class="pl10 pr10 pt5 pb5 ulib-r10 mr25 transition-all {{index==cur_tab_index?'bg-333 color-fff':'bg-f8 color-333'}}">{{item.name}}</view>
|
|
</block>
|
|
</view>
|
|
<view class="mt20">
|
|
<block wx:for="{{list}}" wx:for-item="item" wx:key="index">
|
|
<view class="bbs-1-eb pt20 pb20 fn-flex font-26">
|
|
<view class="wp25 color-ff0000 color-36afa2">{{item.money}}</view>
|
|
<view class="fn-flex-item text-center">{{item.content}}</view>
|
|
<view class="wp40 text-right">{{item.time}}</view>
|
|
</view>
|
|
</block>
|
|
</view>
|
|
<lcb-listmore isLoading='{{loading}}' isEnd='{{end}}' isNoData='{{noData}}'></lcb-listmore>
|
|
</view>
|
|
<view class="fixed left-0 bottom-0 right-0 bg-fff-op90 pl40 pr40 pt20 pb40 z-index-1">
|
|
<view class="fn-flex text-center fn-flex-between">
|
|
<view class="fn-flex-item flexsize4 pt20 pb20 btn-36afa2 font-32 color-fff ulib-r750" bindtap="pushLink" data-url="/pages/customer/score/recharge">立即充值</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
|
|
|
|
|
|
</view> |