|
|
@ -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> |
|
|
@ -79,7 +82,12 @@ |
|
|
|
:detailValidate="detailValidate" |
|
|
|
@detailBasicFormOnChange="qtyOnChange" |
|
|
|
|
|
|
|
/> |
|
|
|
> |
|
|
|
|
|
|
|
<template #table-qty="{row}"> |
|
|
|
<span>{{ Number(row.qty).toFixed(2) }}</span> |
|
|
|
</template> |
|
|
|
</Detail> |
|
|
|
|
|
|
|
<!-- 创建标签 --> |
|
|
|
<BasicForm |
|
|
|