|
@@ -113,6 +113,21 @@
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
+ <view v-if="orderType == 'secondHand' && item.shippingType == 2">
|
|
|
|
+ <view class="map borRadius14">
|
|
|
|
+ <view class='title item acea-row row-between-wrapper'>
|
|
|
|
+ <view>自提地址信息</view>
|
|
|
|
+ <view class="place cart-color acea-row row-center-wrapper" @tap="showMaoLocation(item)">
|
|
|
|
+ <text class="iconfont icon-weizhi"></text>查看位置
|
|
|
|
+ </view>
|
|
|
|
+ </view>
|
|
|
|
+ <view class="address">
|
|
|
|
+ <view class='name' @tap="makePhone(item.merPhone)">{{item.merName}}<text class='phone'>{{item.merPhone}}</text><text
|
|
|
|
+ class="iconfont icon-tonghua font-color"></text></view>
|
|
|
|
+ <view>{{item.merAddressDetail}}</view>
|
|
|
|
+ </view>
|
|
|
|
+ </view>
|
|
|
|
+ </view>
|
|
<view class="borRadius14 orderGoodsBox">
|
|
<view class="borRadius14 orderGoodsBox">
|
|
<orderGoods :orderInfo="item" :orderNo="orderNo" :cartInfo="item.orderInfoList" :jump="true" :orderData="orderInfo"
|
|
<orderGoods :orderInfo="item" :orderNo="orderNo" :cartInfo="item.orderInfoList" :jump="true" :orderData="orderInfo"
|
|
:secondType="orderInfo.secondType"></orderGoods>
|
|
:secondType="orderInfo.secondType"></orderGoods>
|
|
@@ -258,8 +273,9 @@
|
|
<view class='bnt cancel' v-show="Number(orderInfo.status) >1 &&Number(orderInfo.status) < 9 && orderInfo.status!=3&&shippingType===1"
|
|
<view class='bnt cancel' v-show="Number(orderInfo.status) >1 &&Number(orderInfo.status) < 9 && orderInfo.status!=3&&shippingType===1"
|
|
@tap='godeliverRecord'>发货记录
|
|
@tap='godeliverRecord'>发货记录
|
|
</view>
|
|
</view>
|
|
- <view class='bnt bg_color' v-show="orderInfo.status==4 && orderInfo.refundStatus!==3 || orderType == 'secondHand' && shippingType == 2 && orderInfo.status == 1"
|
|
|
|
- @tap='confirmOrder'>确认收货</view>
|
|
|
|
|
|
+ <view class='bnt bg_color' v-show="orderType !== 'secondHand' && orderInfo.status==4 && orderInfo.refundStatus!==3" @tap='confirmOrder'>确认收货</view>
|
|
|
|
+ <view class='bnt bg_color' v-show="orderType == 'secondHand' && shippingType == 2 && orderInfo.status == 1 && orderInfo.uid == uid" @tap='confirmOrder'>确认收货</view>
|
|
|
|
+ <view class='bnt bg_color' v-show="orderType == 'secondHand' && shippingType == 1 && orderInfo.status == 4 && orderInfo.uid == uid" @tap='confirmOrder'>确认收货</view>
|
|
<view class='bnt bg_color' v-show="orderType == 'secondHand' && shippingType == 1 && orderInfo.status == 1 && orderInfo.sellerId == uid"
|
|
<view class='bnt bg_color' v-show="orderType == 'secondHand' && shippingType == 1 && orderInfo.status == 1 && orderInfo.sellerId == uid"
|
|
@tap='confirmFHOrder'>确认发货</view>
|
|
@tap='confirmFHOrder'>确认发货</view>
|
|
<view class='bnt cancel' v-show="orderInfo.status==6 || orderInfo.status==9" @tap='delOrder'>删除订单
|
|
<view class='bnt cancel' v-show="orderInfo.status==6 || orderInfo.status==9" @tap='delOrder'>删除订单
|
|
@@ -609,6 +625,10 @@
|
|
return item.shippingType === 1
|
|
return item.shippingType === 1
|
|
})
|
|
})
|
|
that.isUserAddress = that.userAddress.length > 0 ? true : false;
|
|
that.isUserAddress = that.userAddress.length > 0 ? true : false;
|
|
|
|
+ if (that.orderType == 'secondHand' && data.merchantOrderList[0].shippingType == 2) {
|
|
|
|
+ that.isUserAddress = true;
|
|
|
|
+ that.userAddress = data.merchantOrderList;
|
|
|
|
+ }
|
|
if (data.status !== 0 || data.status !== 9) {
|
|
if (data.status !== 0 || data.status !== 9) {
|
|
if (data.merchantOrderList[0].shippingType == 2) that.markCode(data.merchantOrderList[
|
|
if (data.merchantOrderList[0].shippingType == 2) that.markCode(data.merchantOrderList[
|
|
0].verifyCode);
|
|
0].verifyCode);
|