orderConfirm.wxml 510 B

123456789101112131415
  1. <view class="orderConfirmContainer">
  2. <!-- 提示 -->
  3. <view class="tip">
  4. <icon color="#fbac15" type="warn"/>
  5. <text>请勿在油机旁使用手机</text>
  6. </view>
  7. <!-- 订单 -->
  8. <orderInfo class="orderInfo" order="{{order}}" bottonText2="{{oprationBtn2}}" bind:bottonEvent2="toMordOrderPage" />
  9. <text class="moreOrderTip" bind:tap="toMordOrderPage">更多交易</text>
  10. <!-- 支付按钮 -->
  11. <pay class="payButton" amount="{{order.amount}}" bind:onPay="toPay" />
  12. </view>