14 lines
638 B
Plaintext
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> |