index.wxml 607 B

12345678910111213141516171819202122
  1. <t-navbar background="#ffffff" left-icon="slot" />
  2. <view class="pay-result">
  3. <view class="pay-status">
  4. <t-icon name="check-circle-filled" size="60rpx" color="#47D368" />
  5. <text>支付成功</text>
  6. </view>
  7. <view class="pay-money">
  8. 微信支付:
  9. <price
  10. wx:if="{{totalPaid}}"
  11. price="{{totalPaid}}"
  12. wr-class="pay-money__price"
  13. decimalSmaller
  14. fill
  15. />
  16. </view>
  17. <view class="btn-wrapper">
  18. <view class="status-btn" data-type="orderList" bindtap="onTapReturn">查看订单</view>
  19. <view class="status-btn" data-type="home" bindtap="onTapReturn">返回首页</view>
  20. </view>
  21. </view>