| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128 | <!-- 确认订单 --><!-- 参团流程 --><!-- <view class="process">  <view class="process-item choose-goods">    <view class="process-icon">      <image src="../../images/icon/gift.png"></image>    </view>    <view class="process-text">1.选择商品开团/参团</view>  </view>  <view class="next-icon"><image src="../../images/icon/more.png"></image></view>  <view class="process-item invent">    <view class="process-icon">      <image src="../../images/icon/chat.png"></image>    </view>    <view class="process-text">2.邀请好友参团</view>  </view>  <view class="next-icon"><image src="../../images/icon/more.png"></image></view>  <view class="process-item full">    <view class="process-icon">      <image src="../../images/icon/enough.png"></image>    </view>    <view class="process-text">3.人满成团</view>  </view></view> --><!-- 流程end --><!--地址栏 --><view class="address-box" bindtap="toAddrListPage">  <!-- 地址图标 -->  <view class="addr-icon"><image src="../../images/icon/addr.png"></image></view>  <!-- 地址为空 -->  <view class="add-addr" wx:if="{{!fullItemObj.userAddr}}">添加收货地址</view>  <!-- 地址信息 -->  <block wx:if="{{fullItemObj.userAddr}}">	<view class="recipient clearfix">	  <text class="username">{{fullItemObj.userAddr.receiver}}</text>	  <text class="cellphone">{{fullItemObj.userAddr.mobile}}</text>	</view>	<view class="addr-text">收货地址:{{fullItemObj.userAddr.address}}{{fullItemObj.userAddr.addressName}}{{fullItemObj.userAddr.addrDetail}}</view>  </block>  <!-- 右箭头 -->  <view class="more-icon"><image src="../../images/icon/more.png"></image></view>  <!-- 下虚线 -->  <view class="dotted-line"><image src="../../images/icon/dotted-line.png"></image></view></view><!--地址栏end --><!-- 商品信息 --><view class="goods-box">  <!-- <view class="goods-shop">    <view class="shop-icon"><image src="../../images/icon/shop.png"></image></view>    <text class="shop-name">笑橙小店190827</text>  </view>   -->  <!-- 商品信息 -->  <view class="goods-msg" >    <view class="goods-img">      <image src="{{fullItemObj.shopCartItem.pic}}"></image>      <!-- <view class="miaosha">        <image src="../../images/icon/miaosha.png"></image>      </view> -->    </view>    <view class="goods-text clearfix">      <view class="goods-name">{{fullItemObj.shopCartItem.prodName}}</view>      <view class="miaosha">        <image src="../../images/icon/miaosha.png"></image>      </view>      <text class="goods-price">¥{{wxs.toPrice(fullItemObj.shopCartItem.seckillPrice)}}</text>      <text class="goods-price-del">¥{{wxs.toPrice(fullItemObj.shopCartItem.price)}}</text>      <text class="goods-amount">x {{fullItemObj.shopCartItem.prodCount}}</text>    </view>  </view></view><!-- 商品信息end --><!-- 配送&留言 --><view class="row">  <!-- <view class="dispatching clearfix">    <text class="dispatching-tit">配送方式</text>    <text class="dispatching-way">快递 免运费</text>  </view> -->  <view class="live-message border-radius">    <text class="message-tit">买家留言</text>    <input class="message-int" placeholder="建议留言前先与商家沟通确认" value="{{remarks}}" bindinput="onRemarksInput"/>  </view></view><!-- 配送&留言 end --><!-- 商品总额 --><view class="sum">  <view class="cost-box">    <view class="goods-table clearfix">      <text class="goods-table-tit">商品金额</text>      <text class="goods-table-way">¥{{wxs.toPrice(goodsPrice)}}</text>    </view>    <view class="goods-table clearfix">      <text class="goods-table-tit">运费</text>      <text class="goods-table-way">+ ¥{{wxs.toPrice(transfee)}}</text>    </view>  </view>  <!-- 合计 -->  <view class="total-cost">    合计:<text class="total-num">¥{{wxs.toPrice(totalPrice)}}</text>  </view></view><!-- 商品金额 end --><!-- 底部 --><view class="foot-box">  <view class="foot">    <view class="total-price">合计:<text class="total-price-num">¥{{wxs.toPrice(totalPrice)}}</text></view>    <!-- 提交按钮 -->    <view class="submit-btn" bindtap="commitOrder">提交订单</view>  </view></view><!-- 底部end --><wxs module="wxs" src="../../wxs/number.wxs" />
 |