eed73239ab
- 优化日期选择器样式和默认值 - 重新设计优惠券卡片样式 - 添加加载状态和空状态处理 - 更新项目配置和小程序基础库版本
52 lines
2.1 KiB
Plaintext
52 lines
2.1 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">8082</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">8593</view>
|
|
<view class="font-26 color-666 mt5">充值</view>
|
|
</view>
|
|
<view class="fn-flex-item pt30 pb30">
|
|
<view class="font-40">8593</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">
|
|
<view class="fn-flex font-28">
|
|
<block wx:for="{{tab_list}}" wx:key="index">
|
|
<view 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="{{10}}" wx:key="index">
|
|
<view class="bbs-1-eb pt20 pb20 fn-flex font-26">
|
|
<view class="wp25 color-ff0000 color-36afa2">{{'+40'}}</view>
|
|
<view class="fn-flex-item text-center">{{'L:138****1234'}}</view>
|
|
<view class="wp40 text-right">{{'2025.02.25'}}</view>
|
|
</view>
|
|
</block>
|
|
</view>
|
|
<lcb-listmore isLoading='{{loading}}' isEnd='{{end}}' isNoData='{{noData}}'></lcb-listmore>
|
|
</view>
|
|
|
|
</view>
|
|
</view>
|
|
|
|
|
|
|
|
|
|
</view> |