orderConfirm.wxml 1.27 KB
<view>
<view class="orderContainer">
  <scroll-view scroll-x="false">
    <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="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>