|
@@ -22,9 +22,10 @@
|
|
|
:type="sitem.status == '0' ? 'warning' : ''"
|
|
|
v-text="
|
|
|
(
|
|
|
- statusOptions.find(
|
|
|
- (item) => item.value == sitem.status
|
|
|
- ) || {}
|
|
|
+ (sitem.is_receive === '0'
|
|
|
+ ? status1Options
|
|
|
+ : status2Options
|
|
|
+ ).find((item) => item.value == sitem.status) || {}
|
|
|
).label || '--'
|
|
|
"
|
|
|
></el-tag>
|
|
@@ -78,7 +79,7 @@
|
|
|
<el-collapse-item title="商品信息" name="2">
|
|
|
<show-goods-data-table
|
|
|
:newTime="newTime"
|
|
|
- v-if="newTime !== ''"
|
|
|
+ v-if="newTime !== ''&&sitem"
|
|
|
:type="sitem.order_type"
|
|
|
:skucode="sitem.skuCode"
|
|
|
:spucode="sitem.good_code"
|
|
@@ -101,6 +102,7 @@
|
|
|
title="采购审核"
|
|
|
name="4"
|
|
|
v-if="
|
|
|
+ sitem &&
|
|
|
sitem.order_type !== '1' &&
|
|
|
(status == '2' ||
|
|
|
status == '3' ||
|
|
@@ -119,7 +121,9 @@
|
|
|
title="设置退货仓库"
|
|
|
name="4"
|
|
|
v-if="
|
|
|
- sitem.order_type !== '1' && sitem.is_receive==='1'&&
|
|
|
+ sitem &&
|
|
|
+ sitem.order_type !== '1' &&
|
|
|
+ sitem.is_receive === '1' &&
|
|
|
((status == '3' && powers.some((item) => item == '083')) ||
|
|
|
status == '4' ||
|
|
|
status == '5')
|
|
@@ -135,7 +139,7 @@
|
|
|
<el-collapse-item
|
|
|
title="用户退货"
|
|
|
name="4"
|
|
|
- v-if="sitem.order_type !== '1' && status == '4'"
|
|
|
+ v-if="sitem&&sitem.order_type !== '1' && status == '4'"
|
|
|
>
|
|
|
用户退货
|
|
|
</el-collapse-item>
|
|
@@ -221,14 +225,26 @@ export default {
|
|
|
sitem: null,
|
|
|
newTime: "",
|
|
|
loading: false,
|
|
|
- statusOptions: [
|
|
|
- { value: "1", label: "待业务审核" },
|
|
|
- { value: "2", label: "待采购审核" },
|
|
|
- { value: "3", label: "待设置仓库" },
|
|
|
- { value: "4", label: "待客户退货" },
|
|
|
- { value: "5", label: "售后已完成" },
|
|
|
- { value: "6", label: "业务已驳回" },
|
|
|
- { value: "7", label: "采购已驳回" },
|
|
|
+ // 收到货状态
|
|
|
+ status1Options: [
|
|
|
+ { id: "1", label: "待业务审核" },
|
|
|
+ { id: "2", label: "待采购审核" },
|
|
|
+ { id: "3", label: "待设置仓库" },
|
|
|
+ { id: "4", label: "待客户退货" },
|
|
|
+ { id: "5", label: "售后已完成" },
|
|
|
+ { id: "6", label: "业务已驳回" },
|
|
|
+ { id: "7", label: "采购已驳回" },
|
|
|
+ { id: "8", label: "申请已取消" },
|
|
|
+ ],
|
|
|
+ // 未收到货状态
|
|
|
+ statu2Options: [
|
|
|
+ { id: "1", label: "待业务审核" },
|
|
|
+ { id: "2", label: "待采购审核" },
|
|
|
+ { id: "3", label: "待同意退货" },
|
|
|
+ { id: "5", label: "售后已完成" },
|
|
|
+ { id: "6", label: "业务已驳回" },
|
|
|
+ { id: "7", label: "采购已驳回" },
|
|
|
+ { id: "8", label: "申请已取消" },
|
|
|
],
|
|
|
orderCode: "",
|
|
|
return_code: "",
|