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