refactor: 优化页面样式和交互逻辑 fix: 修复洗车券列表和详情页的数据展示问题 style: 调整用户页面按钮样式和布局 chore: 移除无用页面和代码,更新项目配置 docs: 更新单次启动页面的使用说明和注意事项 perf: 优化网络请求和数据处理逻辑 build: 更新依赖和配置文件 test: 更新测试用例以适应新功能 ci: 调整CI配置以适应新项目结构
22 lines
872 B
Plaintext
22 lines
872 B
Plaintext
<page-loding wx:if="{{showLoding}}"></page-loding>
|
|
<view class="{{types=='voucher'?'container voucher-container':'container'}}">
|
|
<view class="money">
|
|
<my-money user="{{user}}"></my-money>
|
|
</view>
|
|
<view class="list-box">
|
|
<view class="item" wx:for="{{list}}" wx:key="index">
|
|
<view class="name">{{item.message}}</view>
|
|
<view class="footer">
|
|
<view class="time">{{item.timestamp}}</view>
|
|
<view class="num">{{item.symbol}}{{item.amount}}</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="no-content" wx:if="{{list.length==0&&!loading}}">
|
|
<image src="/img/nocontent.png"></image>
|
|
<view>暂无相关数据</view>
|
|
</view>
|
|
<service-tel></service-tel>
|
|
<view bindtap="toPage" class="scan-btn" wx:if="{{type=='invest'}}"> 立即充值 </view>
|
|
</view>
|