|
|
@ -74,7 +74,17 @@ |
|
|
|
" |
|
|
|
@buttonBaseClick="detailButtonBaseClick" |
|
|
|
@searchTableSuccessDetail="searchTableSuccessDetail" |
|
|
|
/> |
|
|
|
> |
|
|
|
<template #taxAmount="scrop"> |
|
|
|
{{scrop.row.taxAmount.toFixed(2)}} |
|
|
|
</template> |
|
|
|
<template #afterTaxAmount="scrop"> |
|
|
|
{{scrop.row.afterTaxAmount.toFixed(2)}} |
|
|
|
</template> |
|
|
|
<template #beforeTaxAmount="scrop"> |
|
|
|
{{scrop.row.beforeTaxAmount.toFixed(2)}} |
|
|
|
</template> |
|
|
|
</Detail> |
|
|
|
|
|
|
|
<!-- 导入 --> |
|
|
|
<ImportForm ref="importFormRef" url="/wms/deliver-plan-main/import" :importTemplateData="importTemplateData" |
|
|
@ -260,13 +270,13 @@ const buttonTableClick = async (val, row) => { |
|
|
|
/** 添加/修改操作 */ |
|
|
|
const formRef = ref() |
|
|
|
const openForm =async (type: string, row?: any) => { |
|
|
|
formRef.value.openForm(type,row) |
|
|
|
formRef.value.openForm(type, row) |
|
|
|
} |
|
|
|
|
|
|
|
/** 详情操作 */ |
|
|
|
const detailRef = ref() |
|
|
|
const openDetail = (row: any, titleName: any, titleValue: any) => { |
|
|
|
detailRef.value.openDetail(row, titleName, titleValue,'planDeliverMain') |
|
|
|
detailRef.value.openDetail(row, titleName, titleValue, 'planDeliverMain') |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|