Files
2024-08-22 12:47:21 +08:00

22 lines
1.2 KiB
Plaintext

<view class="container">
<view wx:if="{{res.st}}">
<view style="padding:30rpx; margin:20rpx;">
<text style="color: red;">{{res.title}}</text>
<view style="text-align: center;padding-top:30rpx; margin-top:20rpx;">请滑动到底部跳转到订单列表</view>
</view>
<view style="display: flex;flex-direction: column; justify-content: center;align-items: center;" wx:for="{{res.pays}}" wx:key="this">
<view style="display: flex;flex-direction: column; justify-content: center;align-items: center;">
<view style="padding:20rpx 0;">{{item.name}}</view>
<view style="color: red;">{{item.content}}</view>
<image bindtap="preview" data-list="{{res.pays}}" data-src="{{item.url}}" src="{{item.url}}" style="max-height: 100%;max-width: 100%;height: 700rpx;"></image>
</view>
</view>
<view style="padding:30rpx; margin:20rpx;">
<text style="color: red;">{{res.title}}</text>
</view>
</view>
<view class="cont-box b-f">
<button bindtap="ToOrder" class="saoma">去查看我的订单</button>
</view>
</view>