|
|
@ -28,6 +28,9 @@ |
|
|
|
v-model:currentPage="tableObject.currentPage" |
|
|
|
v-model:sort="tableObject.sort" |
|
|
|
> |
|
|
|
<template #qty="{row}"> |
|
|
|
<span>{{ Number(row.qty).toFixed(2) }}</span> |
|
|
|
</template> |
|
|
|
<template #number="{row}"> |
|
|
|
<el-button type="primary" link @click="openDetail(row, '单据号', row.number)"> |
|
|
|
<span>{{ row.number }}</span> |
|
|
@ -58,7 +61,11 @@ |
|
|
|
:detailAllSchemas="ProductionscrapRecordDetail.allSchemas" |
|
|
|
:detailAllSchemasRules="ProductionscrapRecordDetailRules" |
|
|
|
:apiPage="ProductionscrapRecordDetailApi.getProductionscrapRecordDetailPage" |
|
|
|
/> |
|
|
|
> |
|
|
|
<template #table-qty="{row}"> |
|
|
|
<span>{{ Number(row.qty).toFixed(2) }}</span> |
|
|
|
</template> |
|
|
|
</Detail> |
|
|
|
</template> |
|
|
|
|
|
|
|
<script setup lang="ts"> |
|
|
|