123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- <view class="container">
- <view class="order-main-top">
- <view class="order-main-left">
- <view class="order-detail-status">
- {{orderInfo.orderStatusText}}
- </view>
- <view class="order-detail-des">
- 服务中有任何问题 请联系客服哦
- </view>
- </view>
- <view class="order-main-right">
- <view class="service-times">
- <text class="current-times">{{orderInfo.servicedTimes}}</text>/{{orderInfo.serviceTimes}}
- </view>
- <view class="view-service"
- wx:if="{{!(orderInfo.orderStatus==101||orderInfo.orderStatus==102||orderInfo.orderStatus==103)}}" bindtap="viewService">
- 查看服务
- </view>
- </view>
- </view>
- <view class="order-info">
- <view class="item">下单时间:{{orderInfo.addTime}}</view>
- <view class="item">订单编号:{{orderInfo.orderSn}}</view>
- <view class="item">预约时段:{{orderInfo.orderDate}}</view>
- <view class="item">订单留言:{{orderInfo.message}}</view>
- <view class="item-c">
- <view class="l">实付:
- <text class="cost">¥{{orderInfo.actualPrice}}</text>
- </view>
- <view class="r">
- <view class="btn active" bindtap="cancelOrder" wx:if="{{handleOption.cancel}}">取消订单</view>
- <!-- <view class="btn active" bindtap="confirmOrder" wx:if="{{handleOption.confirm}}">待上门</view> -->
- <view class="btn active" bindtap="payOrder" wx:if="{{handleOption.pay}}">去付款</view>
- <!-- <view class="btn active" bindtap="deleteOrder" wx:if="{{handleOption.delete}}">删除订单</view> -->
- <!-- <view class="btn active" bindtap="refundOrder" wx:if="{{handleOption.refund&&excludeAxb}}">申请退款</view> -->
- <view class="btn active" bindtap="aftersaleOrder" wx:if="{{handleOption.aftersale}}">申请售后</view>
- </view>
- </view>
- </view>
- <view class="order-goods">
- <view class="h">
- <view class="label">商品信息</view>
- <view class="status">{{orderInfo.orderStatusText}}</view>
- </view>
- <view class="goods">
- <view class="item" wx:for="{{orderGoods}}" wx:key="id">
- <view class="img">
- <image src="{{item.picUrl}}"></image>
- </view>
- <view class="info">
- <view class="t">
- <text class="name">{{item.goodsName}}</text>
- <text class="number">x{{item.number}}</text>
- </view>
- <view class="attr">{{item.specifications}}</view>
- <view class="price">¥{{item.price}}</view>
- <!-- <view class="btn active" wx:if="{{handleOption.comment && (item.comment == 0)}}">
- <navigator url="../commentPost/commentPost?orderId={{item.orderId}}&&valueId={{item.goodsId}}&type=0">去评价</navigator>
- </view> -->
- <view class="btn active" wx:if="{{handleOption.rebuy}}">
- <navigator url="../../goods/goods?id={{item.goodsId}}">再次购买</navigator>
- </view>
- </view>
- </view>
- </view>
- <view class="order-bottom">
- <view class="address">
- <view class="t">
- <text class="name">{{orderInfo.consignee}}</text>
- <text class="mobile">{{orderInfo.mobile}}</text>
- </view>
- <view class="b">{{orderInfo.address}}</view>
- </view>
- <view class="total">
- <view class="t">
- <text class="label">商品合计:</text>
- <text class="txt">¥{{orderInfo.goodsPrice}}</text>
- </view>
- <!-- <view class="t">
- <text class="label">运费:</text>
- <text class="txt">¥{{orderInfo.freightPrice}}</text>
- </view> -->
- <view class="t">
- <text class="label">优惠:</text>
- <text class="txt">¥-{{orderInfo.couponPrice}}</text>
- </view>
- </view>
- <view class="pay-fee">
- <text class="label">实付:</text>
- <text class="txt">¥{{orderInfo.actualPrice}}</text>
- </view>
- </view>
- </view>
- <!--
- <view class="order-express" bindtap="expandDetail" wx:if="{{ orderInfo.expNo }}">
- <view class="order-express">
- <view class="title">
- <view class="t">快递公司:{{orderInfo.expName}}</view>
- <view class="b">物流单号:{{orderInfo.expNo}}</view>
- </view>
- <van-icon class="ti" name="arrow" />
- </view>
- <view class="traces" wx:for="{{expressInfo.Traces}}" wx:key="item" wx:for-item="iitem" wx:if="{{ flag }}">
- <view class="trace">
- <view class="acceptStation">{{iitem.AcceptStation}}</view>
- <view class="acceptTime">{{iitem.AcceptTime}}</view>
- </view>
- </view>
- </view> -->
- </view>
|