浏览代码

判断更改

xialei 1 年之前
父节点
当前提交
471f316fdc
共有 1 个文件被更改,包括 4 次插入4 次删除
  1. 4 4
      src/views/order/orderRefund/index.vue

+ 4 - 4
src/views/order/orderRefund/index.vue

@@ -187,7 +187,7 @@
187 187
             <el-button type="text" size="small" @click="onOrderLog(scope.row.refund_order_id)">订单记录</el-button>
188 188
             <el-button type="text" size="small" @click="checkRefundOrder(scope.row.refund_order_id,scope.row.order.douhuomall)">
189 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 191
             </el-button>
192 192
 
193 193
             <el-button type="text" size="small" @click="onOrderMark(scope.row.refund_order_id)">订单备注</el-button>
@@ -353,7 +353,7 @@
353 353
             <el-button type="text" size="mini"  @click="checkExpressInfo(orderDetailData)" style="width: 67px; border-color: blue; border-color: blue; color: #333333;">查看物流</el-button>
354 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 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 358
             <el-radio :label="1">同意退款</el-radio>
359 359
             <el-radio :label="-1">拒绝退款</el-radio>
@@ -418,8 +418,8 @@
418 418
 
419 419
         <!-- 确定按钮 -->
420 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 423
 <!--          <el-button type="primary" size="small" @click="dialogRefund = false" style="width: 100px; margin-top: 20px;" >取消</el-button>-->
424 424
         </div>
425 425