|
@@ -47,6 +47,10 @@
|
|
|
<template v-slot:status="{ row }">
|
|
<template v-slot:status="{ row }">
|
|
|
<span>{{ row.status == 1 ? "已发货" : row.status == 2 ? "已收货" : "驳回"}}</span>
|
|
<span>{{ row.status == 1 ? "已发货" : row.status == 2 ? "已收货" : "驳回"}}</span>
|
|
|
</template>
|
|
</template>
|
|
|
|
|
+
|
|
|
|
|
+ <template v-slot:isTransferToProductionPlan="{ row }">
|
|
|
|
|
+ <span>{{ row.isTransferToProductionPlan == 1 ? "已转生产计划" : "未转生产计划"}}</span>
|
|
|
|
|
+ </template>
|
|
|
</ele-pro-table>
|
|
</ele-pro-table>
|
|
|
|
|
|
|
|
<template v-slot:footer v-if="type != 'detail' && type != 'send'">
|
|
<template v-slot:footer v-if="type != 'detail' && type != 'send'">
|
|
@@ -236,6 +240,13 @@
|
|
|
label: '状态',
|
|
label: '状态',
|
|
|
align: 'center',
|
|
align: 'center',
|
|
|
showOverflowTooltip: true
|
|
showOverflowTooltip: true
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ prop: 'isTransferToProductionPlan',
|
|
|
|
|
+ slot: 'isTransferToProductionPlan',
|
|
|
|
|
+ label: '是否转生产计划',
|
|
|
|
|
+ align: 'center',
|
|
|
|
|
+ showOverflowTooltip: true
|
|
|
}
|
|
}
|
|
|
];
|
|
];
|
|
|
}
|
|
}
|