|
@@ -1,5 +1,5 @@
|
1
|
1
|
<template>
|
2
|
|
- <!-- 费用利息补贴清算表 -->
|
|
2
|
+ <!-- 轮换费用利息补贴清算表 -->
|
3
|
3
|
<div>
|
4
|
4
|
<a-space class="header" ref="tableElem">
|
5
|
5
|
<div class="input-box">
|
|
@@ -35,6 +35,7 @@
|
35
|
35
|
bordered
|
36
|
36
|
:pagination="false"
|
37
|
37
|
:row-class-name="(_record, index) => (index % 2 === 1 ? 'table-striped' : null)"
|
|
38
|
+ :scroll="{ y: 500 }"
|
38
|
39
|
>
|
39
|
40
|
<template #bodyCell="{ column, record }">
|
40
|
41
|
<template v-if="column.key === 'totalAllocation'">
|
|
@@ -76,16 +77,16 @@
|
76
|
77
|
<a-table-summary-row>
|
77
|
78
|
<a-table-summary-cell class="tc">合计</a-table-summary-cell>
|
78
|
79
|
<a-table-summary-cell>
|
79
|
|
- <a-typography-text class="tc">{{ totals.totalAverageInventory }}</a-typography-text>
|
|
80
|
+ <a-typography-text class="tc">{{ totals.totalAverageInventory.toFixed(2) }}</a-typography-text>
|
80
|
81
|
</a-table-summary-cell>
|
81
|
82
|
<a-table-summary-cell>
|
82
|
|
- <a-typography-text class="tc">{{ totals.totalAverageRawGrainInventory }}</a-typography-text>
|
|
83
|
+ <a-typography-text class="tc">{{ totals.totalAverageRawGrainInventory.toFixed(2) }}</a-typography-text>
|
83
|
84
|
</a-table-summary-cell>
|
84
|
85
|
<a-table-summary-cell>
|
85
|
|
- <a-typography-text class="tc">{{ totals.totalAverageRawGrainInventoryPhysical }}</a-typography-text>
|
|
86
|
+ <a-typography-text class="tc">{{ totals.totalAverageRawGrainInventoryPhysical.toFixed(2) }}</a-typography-text>
|
86
|
87
|
</a-table-summary-cell>
|
87
|
88
|
<a-table-summary-cell>
|
88
|
|
- <a-typography-text class="tc">{{ totals.totalAverageRawGrainInventoryEmpty }}</a-typography-text>
|
|
89
|
+ <a-typography-text class="tc">{{ totals.totalAverageRawGrainInventoryEmpty.toFixed(2) }}</a-typography-text>
|
89
|
90
|
</a-table-summary-cell>
|
90
|
91
|
<a-table-summary-cell>
|
91
|
92
|
<a-typography-text class="tc"></a-typography-text>
|
|
@@ -146,7 +147,7 @@ const columns = [
|
146
|
147
|
align: 'center'
|
147
|
148
|
},
|
148
|
149
|
{
|
149
|
|
- title: '利息费用',
|
|
150
|
+ title: '利息费用应拨数',
|
150
|
151
|
dataIndex: 'interestCostAllocation',
|
151
|
152
|
key: 'interestCostAllocation',
|
152
|
153
|
width: 200,
|