|
@@ -18,18 +18,20 @@
|
|
|
|
|
|
<el-table-column
|
|
|
show-overflow-tooltip
|
|
|
- prop="status"
|
|
|
+ prop="send_status"
|
|
|
label="状态"
|
|
|
width="80"
|
|
|
>
|
|
|
<template slot-scope="scope">
|
|
|
- {{ scope.row.status }}
|
|
|
<el-tag
|
|
|
:size="tablebtnSize"
|
|
|
- :type="scope.row.status == '0' ? 'warning' : ''"
|
|
|
+ :type="scope.row.send_status == '0' ? 'warning' : ''"
|
|
|
v-text="
|
|
|
- (statusOptions.find((item) => item.id == scope.row.status) || {})
|
|
|
- .label || '--'
|
|
|
+ (
|
|
|
+ statusOptions.find(
|
|
|
+ (item) => item.id == scope.row.send_status
|
|
|
+ ) || {}
|
|
|
+ ).label || '--'
|
|
|
"
|
|
|
></el-tag>
|
|
|
</template>
|
|
@@ -186,9 +188,11 @@ export default {
|
|
|
outCode: "",
|
|
|
// 状态
|
|
|
statusOptions: [
|
|
|
- { id: "1", label: "已出库" },
|
|
|
- { id: "2", label: "验收中" },
|
|
|
- { id: "3", label: "验收完成" },
|
|
|
+ { id: "0", label: "待发货" },
|
|
|
+ { id: "1", label: "待库管发货" },
|
|
|
+ { id: "2", label: "待收货" },
|
|
|
+ { id: "3", label: "已收货" },
|
|
|
+ { id: "4", label: "已全部退货" }
|
|
|
],
|
|
|
showGoodsModel: false,
|
|
|
stock_code: "",
|