|
|
@@ -206,6 +206,12 @@
|
|
|
<el-tag v-else-if="row.sendStatus == 7" type="success">{{
|
|
|
'部分发货'
|
|
|
}}</el-tag>
|
|
|
+ <el-tag v-else-if="row.sendStatus == 8" type="success">{{
|
|
|
+ '部分收货'
|
|
|
+ }}</el-tag>
|
|
|
+ <el-tag v-else-if="row.sendStatus == 9" type="success">{{
|
|
|
+ '部分驳回'
|
|
|
+ }}</el-tag>
|
|
|
</template>
|
|
|
|
|
|
<template v-slot:approvalStatus="{ row }">
|
|
|
@@ -267,7 +273,9 @@
|
|
|
:underline="false"
|
|
|
@click="sendGoods(row, 'add')"
|
|
|
v-if="
|
|
|
- row.approvalStatus == 2 && (row.sendStatus == 0 || !row.sendStatus || row.sendStatus == 7)
|
|
|
+ row.approvalStatus == 2 && (row.sendStatus == 0 || !row.sendStatus || row.sendStatus == 7
|
|
|
+ || row.sendStatus == 8 || row.sendStatus == 9
|
|
|
+ )
|
|
|
"
|
|
|
>
|
|
|
发货
|