You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
845 B
23 lines
845 B
3 months ago
|
<!--pages/pay-result/pay-result.wxml-->
|
||
|
<view class='container'>
|
||
|
<view wx:if="{{sts == 0}}">
|
||
|
<view class="pay-sts fail">支付失败</view>
|
||
|
<view class='tips'>请在
|
||
|
<text class="warn">30分钟</text>内完成付款</view>
|
||
|
<view class='tips'>否则订单会被系统取消</view>
|
||
|
<view class="btns">
|
||
|
<text class='button checkorder' bindtap='toOrderList'>查看订单</text>
|
||
|
<text class='button payagain' bindtap='payAgain'>重新支付</text>
|
||
|
</view>
|
||
|
</view>
|
||
|
|
||
|
<view wx:if="{{sts == 1}}">
|
||
|
<view class="pay-sts succ">支付成功</view>
|
||
|
<view class='tips'>感谢您的购买</view>
|
||
|
<view class="btns">
|
||
|
<text class='button checkorder' bindtap='toOrderList'>查看订单</text>
|
||
|
<text class='button shopcontinue' bindtap='toIndex'>继续购物</text>
|
||
|
</view>
|
||
|
</view>
|
||
|
|
||
|
</view>
|