|
@@ -42,6 +42,10 @@
|
|
|
:loading="loading"
|
|
|
:rowSelection="{selectedRowKeys: selectedRowKeys, onChange: onSelectChange}"
|
|
|
@change="handleTableChange">
|
|
|
+ <span slot="afterAdjustment" slot-scope="text, record">
|
|
|
+ <a v-if="record.salaryReduction&&record.salaryReduction!==''">- {{record.salaryReduction}}</a>
|
|
|
+ <a v-if="record.salaryIncrease&&record.salaryIncrease!==''">+{{record.salaryIncrease}}</a>
|
|
|
+ </span>
|
|
|
</a-table>
|
|
|
</div>
|
|
|
<!-- table区域-end -->
|
|
@@ -103,7 +107,8 @@
|
|
|
{
|
|
|
title: '变更金额',
|
|
|
align:"center",
|
|
|
- dataIndex: 'afterAdjustment'
|
|
|
+ dataIndex: 'afterAdjustment',
|
|
|
+ scopedSlots: { customRender: 'afterAdjustment' }
|
|
|
},
|
|
|
{
|
|
|
title: '变更说明',
|