orderConfirm.wxml 644 B

1234567891011121314151617
  1. <view class="orderConfirmContainer">
  2. <orderInfo class="orderInfo" order="{{order}}"></orderInfo>
  3. <!-- 后支付提示 -->
  4. <view wx:if="{{type == '后支付'}}" class="afterPayTipBox">
  5. <view class="afterPayTip">
  6. <image src="../../images/question.svg"/>
  7. <text>不是我的交易?</text>
  8. </view>
  9. <button bind:tap="toMordOrderPage">更多交易</button>
  10. </view>
  11. <!-- 预支付提示 -->
  12. <text wx:if="{{type == '预支付'}}" class="anthorizationTip">请您先提枪后再做授权</text>
  13. <!-- 支付按钮 -->
  14. <pay class="payButton" amount="{{order.amount}}" bind:onPay="toPay" />
  15. </view>