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>更多交易</button>
- </view>
-
- <text wx:if="{{type == '预支付'}}" class="anthorizationTip">请您先提枪后再做授权</text>
-
- <pay class="payButton" amount="{{order.amount}}" bind:onPay="toPay" />
- </view>
|