orderConfirm.wxml 1.39 KB
<!-- <view> -->
<!-- <view class="orderContainer"> -->
  <scroll-view scroll-y class="orderContainer">
    <text class='message-title'>确认订单</text>
    <addressCell hasAddress="{{hasAddress}}" address="{{address}}" bindaddressevent="chooseAddress"></addressCell>
    <productCell productInfo="{{good}}"></productCell>
    <priceCell promotionFormulaList="{{promotionFormulaList}}" damagesDesc="{{damagesDesc}}"></priceCell>
    <payDeliveryCell paymentWay="{{paymentWay}}" deliveryWay="{{deliveryWay}}"></payDeliveryCell>
  </scroll-view>
<!-- </view> -->
<view class='pay-bottom-root'>
<view class="payProtocolContainer">
<view class="payProtocol">
  <view class="payProtocolCheckImageContainer" bindtap="checkProtocol">
    <image class="payProtocolCheckImage" src="{{agreeProtocol ? checkImage : unCheckImage}}"></image>
  </view>
  <text class="payProtocolLabel">{{protocolLabel}}</text>
  <view class="protocolTextContainer" bindtap="goProtocol">
    <text class="payProtocolText">{{protocolText}}</text>
  </view>
</view>
</view>

<view class="payBottomContainer">
<view class="payBottomLeft">
  <view class="payBottomLeftItem">
    <text class="payLabel">{{payLabel}}</text>
    <text class="payAmount">¥{{amount}}</text>
  </view>
</view>
<view class="{{agreeProtocol ? 'payBottomRight' : 'payBottomRightUnCheck'}}" bindtap="submit">
  <text class="payButton">{{payButton}}</text>
</view>
</view>

</view>