|
@@ -187,7 +187,7 @@
|
|
187
|
<el-button type="text" size="small" @click="onOrderLog(scope.row.refund_order_id)">订单记录</el-button>
|
187
|
<el-button type="text" size="small" @click="onOrderLog(scope.row.refund_order_id)">订单记录</el-button>
|
|
188
|
<el-button type="text" size="small" @click="checkRefundOrder(scope.row.refund_order_id,scope.row.order.douhuomall)">
|
188
|
<el-button type="text" size="small" @click="checkRefundOrder(scope.row.refund_order_id,scope.row.order.douhuomall)">
|
|
189
|
<!-- `status` '状态 0:待审核 -1:审核未通过 1:待退货 2:待收货 3:已退款', -->
|
189
|
<!-- `status` '状态 0:待审核 -1:审核未通过 1:待退货 2:待收货 3:已退款', -->
|
|
190
|
- {{ scope.row.status == 3 || scope.row.status == -1 || scope.row.order.douhuomall== 1 ?'售后进度':'审核' }}
|
|
|
|
|
|
190
|
+ {{ scope.row.status == 3 || scope.row.status == -1 ?'售后进度':'审核' }}
|
|
191
|
</el-button>
|
191
|
</el-button>
|
|
192
|
|
192
|
|
|
193
|
<el-button type="text" size="small" @click="onOrderMark(scope.row.refund_order_id)">订单备注</el-button>
|
193
|
<el-button type="text" size="small" @click="onOrderMark(scope.row.refund_order_id)">订单备注</el-button>
|
|
@@ -353,7 +353,7 @@
|
|
353
|
<el-button type="text" size="mini" @click="checkExpressInfo(orderDetailData)" style="width: 67px; border-color: blue; border-color: blue; color: #333333;">查看物流</el-button>
|
353
|
<el-button type="text" size="mini" @click="checkExpressInfo(orderDetailData)" style="width: 67px; border-color: blue; border-color: blue; color: #333333;">查看物流</el-button>
|
|
354
|
</el-form-item>
|
354
|
</el-form-item>
|
|
355
|
|
355
|
|
|
356
|
- <el-form-item label="审核" class="refund-time" v-if="douhuomall != 1 && (orderDetailData.status == 0 || orderDetailData.status == 2)">
|
|
|
|
|
|
356
|
+ <el-form-item label="审核" class="refund-time" v-if="orderDetailData.status == 0 || orderDetailData.status == 2">
|
|
357
|
<el-radio-group v-model="refundData.status" style="margin-left: 35px;" v-if="(orderDetailData.refund_type ==1 && orderDetailData.status ==0) || (orderDetailData.refund_type ==2 && orderDetailData.status ==2)">
|
357
|
<el-radio-group v-model="refundData.status" style="margin-left: 35px;" v-if="(orderDetailData.refund_type ==1 && orderDetailData.status ==0) || (orderDetailData.refund_type ==2 && orderDetailData.status ==2)">
|
|
358
|
<el-radio :label="1">同意退款</el-radio>
|
358
|
<el-radio :label="1">同意退款</el-radio>
|
|
359
|
<el-radio :label="-1">拒绝退款</el-radio>
|
359
|
<el-radio :label="-1">拒绝退款</el-radio>
|
|
@@ -418,8 +418,8 @@
|
|
418
|
|
418
|
|
|
419
|
<!-- 确定按钮 -->
|
419
|
<!-- 确定按钮 -->
|
|
420
|
<div style="width: 100%; text-align: center;">
|
420
|
<div style="width: 100%; text-align: center;">
|
|
421
|
- <el-button type="primary" size="small" @click="confirmAction" style="width: 100px; margin-top: 20px;" v-if="orderDetailData.status ==0 && douhuomall != 1">确定</el-button>
|
|
|
|
422
|
- <el-button v-if="orderDetailData.status == 2 && douhuomall != 1" type="primary" size="small" style="width: 100px; margin-top: 20px;" @click="confirmReceipt(orderDetailData.refund_order_id)">确定</el-button>
|
|
|
|
|
|
421
|
+ <el-button type="primary" size="small" @click="confirmAction" style="width: 100px; margin-top: 20px;" v-if="orderDetailData.status ==0">确定</el-button>
|
|
|
|
422
|
+ <el-button v-if="orderDetailData.status == 2" type="primary" size="small" style="width: 100px; margin-top: 20px;" @click="confirmReceipt(orderDetailData.refund_order_id)">确定</el-button>
|
|
423
|
<!-- <el-button type="primary" size="small" @click="dialogRefund = false" style="width: 100px; margin-top: 20px;" >取消</el-button>-->
|
423
|
<!-- <el-button type="primary" size="small" @click="dialogRefund = false" style="width: 100px; margin-top: 20px;" >取消</el-button>-->
|
|
424
|
</div>
|
424
|
</div>
|
|
425
|
|
425
|
|