|
@@ -10,7 +10,7 @@
|
|
|
</view>
|
|
|
|
|
|
<text v-if="orderDetail.orderState == 4" class="success_status">{{orderDetail.orderStateDesc}}</text>
|
|
|
- <text v-else-if="orderDetail.orderState == 8" class="refund_status">{{orderDetail.afterSalesDesc}}</text>
|
|
|
+ <text v-else-if="orderDetail.orderState == 8 || item.orderState == 7" class="refund_status">{{orderDetail.afterSalesDesc}}</text>
|
|
|
<text v-else-if="orderDetail.orderState > 4" class="refund_status">{{orderDetail.orderStateDesc}}</text>
|
|
|
<text v-else class="status">{{orderDetail.orderStateDesc}}</text>
|
|
|
</view>
|
|
@@ -24,6 +24,9 @@
|
|
|
<view class="w2" v-if="orderDetail.orderState == 2">
|
|
|
取货码
|
|
|
</view>
|
|
|
+ <view class="w2" v-if="orderDetail.orderState == 8 && orderDetail.afterSales.status == 4 ">
|
|
|
+ 请联系团长处理售后问题
|
|
|
+ </view>
|
|
|
<view class="w3">
|
|
|
<button v-if="orderDetail.orderState == 1" @click="goPay(orderDetail)">
|
|
|
去支付
|
|
@@ -149,7 +152,7 @@
|
|
|
<view class="item-value">¥{{orderDetail.paymentAmount}}</view>
|
|
|
</view>
|
|
|
</view>
|
|
|
- <view class="p_box" v-if="orderDetail.orderState == 8">
|
|
|
+ <view class="p_box" v-if="orderDetail.orderState == 8 || orderDetail.orderState == 7">
|
|
|
<view class="p-t">
|
|
|
售后信息
|
|
|
</view>
|
|
@@ -177,10 +180,14 @@
|
|
|
<view class="item-lable">退款金额</view>
|
|
|
<view class="item-value">¥{{orderDetail.refundAmount}}</view>
|
|
|
</view>
|
|
|
- <view class="p-b-item" v-if="orderDetail.afterSales">
|
|
|
+ <view class="p-b-item" v-if="orderDetail.store && orderDetail.afterSales">
|
|
|
<view class="item-lable">物流单号</view>
|
|
|
<view class="item-value2">{{orderDetail.afterSales.logisticsNo || ''}}</view>
|
|
|
</view>
|
|
|
+ <view class="p-b-item" v-if="orderDetail.afterSales.status == 4">
|
|
|
+ <view class="item-lable">拒绝原因</view>
|
|
|
+ <view class="item-value2">{{orderDetail.afterSales.refuseReason || ''}}</view>
|
|
|
+ </view>
|
|
|
</view>
|
|
|
|
|
|
<view class="p_box" v-if="orderDetail.store">
|
|
@@ -209,7 +216,8 @@
|
|
|
<view class='footer op-area'>
|
|
|
<!-- <button class="info-btn" v-if="orderDetail.orderState == 4" @click="RefundShow = true">申请售后</button>-->
|
|
|
<button class="info-btn" v-if="orderDetail.orderState == 1" @click="cancelOrder()">取消订单</button>
|
|
|
- <button class="info-btn" v-if="orderDetail.store && !orderDetail.afterSales.logisticsNo" @click="bindLogisticsShow(orderDetail.afterSales.afterSalesNo)">填写物流单号</button>
|
|
|
+ <button class="info-btn" v-if="orderDetail.afterSales.status == 4" @click="reSubmit(orderDetail.afterSales.id)">重新提交</button>
|
|
|
+ <button class="info-btn" v-if="orderDetail.store && !orderDetail.afterSales.logisticsNo && orderDetail.afterSales.status != 4" @click="bindLogisticsShow(orderDetail.afterSales.afterSalesNo)">填写物流单号</button>
|
|
|
</view>
|
|
|
</view>
|
|
|
|
|
@@ -275,10 +283,10 @@
|
|
|
<view class="flex-col justify-center wlInputView" >
|
|
|
<input class="wlInput" placeholder="请输入物流单号" type="text" v-model="wlNo" />
|
|
|
</view>
|
|
|
- <view class="flex-row justify-between">
|
|
|
- <button class="popupButtonl" @click="showWl = false">取消</button>
|
|
|
+<!-- <view class="flex-row justify-between">-->
|
|
|
+<!-- <button class="popupButtonl" @click="showWl = false">取消</button>-->
|
|
|
<button class="popupButtonr" @click="bindLogistics">提交</button>
|
|
|
- </view>
|
|
|
+<!-- </view>-->
|
|
|
</view>
|
|
|
</u-popup>
|
|
|
|
|
@@ -290,7 +298,7 @@
|
|
|
<script>
|
|
|
import couponListWindow from '@/components/couponListWindow';
|
|
|
import addressWindow from '@/components/addressWindow';
|
|
|
-import {bindLogisticsNo} from '@/api/groupon.js'
|
|
|
+import {bindLogisticsNo, reSubmit} from '@/api/groupon.js'
|
|
|
import home from '@/components/home';
|
|
|
import {
|
|
|
toLogin
|
|
@@ -535,6 +543,17 @@ export default {
|
|
|
});
|
|
|
})
|
|
|
},
|
|
|
+ reSubmit(afterSalesId) {
|
|
|
+ let that = this;
|
|
|
+ console.log(afterSalesId)
|
|
|
+ reSubmit(afterSalesId).then(res => {
|
|
|
+ that.getOrderDetail(that.orderId, that.afterSalesId)
|
|
|
+ return that.$util.Tips({
|
|
|
+ title: '提交成功',
|
|
|
+ icon: 'success'
|
|
|
+ });
|
|
|
+ })
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
</script>
|
|
@@ -1445,10 +1464,16 @@ export default {
|
|
|
border: 1px solid #f7f7f7;
|
|
|
}
|
|
|
.popupButtonr {
|
|
|
- width: 250rpx;
|
|
|
+ width: 460rpx;
|
|
|
height: 80rpx;
|
|
|
line-height: 80rpx;
|
|
|
border: 1px solid #f7f7f7;
|
|
|
+ background: #B42A3E;
|
|
|
+ font-size: 28rpx;
|
|
|
+ font-weight: 400;
|
|
|
+ color: #FFFFFF;
|
|
|
+ margin-left: 20rpx;
|
|
|
+ margin-right: 20rpx;
|
|
|
|
|
|
}
|
|
|
|