dm-wechat-mini/pages/shop/success/index.wxml
2025-02-15 02:27:33 +08:00

14 lines
638 B
Plaintext

<view class="success">
<icon class="icon" type="success" size="120rpx" color="#FFC300"/>
<view class="text">支付成功</view>
<button class="button" plain bind:tap="back">前往查看订单</button>
</view>
<list-view class="shop-list" bind:refresh="refreshList"
bind:loadMore="getProductList" height="{{scrollViewHeight}}"
refresher-triggered="{{pager.refreshTrigger}}"
show-load-more="{{!(shopList.length==0&&pager.loadAll)}}"
loading="{{pager.loading}}" load-all="{{pager.loadAll}}">
<shop-item wx:for="{{shopList}}" shop="{{item}}" data-item="{{item}}" wx:key="index">
</shop-item>
</list-view>