[bug]-邮寄列表、工作组成员列表金额单位
This commit is contained in:
@@ -161,7 +161,9 @@ export default {
|
|||||||
align: 'center',
|
align: 'center',
|
||||||
width: 200,
|
width: 200,
|
||||||
dataIndex: 'invoiceAmount',
|
dataIndex: 'invoiceAmount',
|
||||||
scopedSlots: { customRender: 'text' }
|
customRender: (text, record) => (
|
||||||
|
<j-ellipsis value={ record.invoiceAmount + '元' } length={ 15 }></j-ellipsis>
|
||||||
|
)
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '项目负责人',
|
title: '项目负责人',
|
||||||
|
|||||||
@@ -154,7 +154,9 @@ export default {
|
|||||||
align: 'center',
|
align: 'center',
|
||||||
width: 200,
|
width: 200,
|
||||||
dataIndex: 'contractAmount',
|
dataIndex: 'contractAmount',
|
||||||
scopedSlots: { customRender: 'text' }
|
customRender: (text, record) => (
|
||||||
|
<j-ellipsis value={ record.contractAmount + '元' } length={ 15 }></j-ellipsis>
|
||||||
|
)
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '邮寄联系人',
|
title: '邮寄联系人',
|
||||||
|
|||||||
@@ -181,7 +181,8 @@ export default {
|
|||||||
width: 150,
|
width: 150,
|
||||||
dataIndex: 'receivableAmount',
|
dataIndex: 'receivableAmount',
|
||||||
customRender: (text, record) => (
|
customRender: (text, record) => (
|
||||||
<j-ellipsis value={ record.receivableAmount + '元' } length={ 15 }></j-ellipsis>)
|
<j-ellipsis value={ record.receivableAmount + '元' } length={ 15 }></j-ellipsis>
|
||||||
|
)
|
||||||
}, {
|
}, {
|
||||||
title: '实收金额',
|
title: '实收金额',
|
||||||
align: 'center',
|
align: 'center',
|
||||||
|
|||||||
@@ -282,13 +282,17 @@ export default {
|
|||||||
align: 'center',
|
align: 'center',
|
||||||
dataIndex: 'receivableAmount',
|
dataIndex: 'receivableAmount',
|
||||||
width: 180,
|
width: 180,
|
||||||
scopedSlots: { customRender: 'text' }
|
customRender: (text, record) => (
|
||||||
|
<j-ellipsis value={ record.receivableAmount + '元' } length={ 15 }></j-ellipsis>
|
||||||
|
)
|
||||||
}, {
|
}, {
|
||||||
title: '实收金额',
|
title: '实收金额',
|
||||||
align: 'center',
|
align: 'center',
|
||||||
dataIndex: 'paidAmount',
|
dataIndex: 'paidAmount',
|
||||||
width: 180,
|
width: 180,
|
||||||
scopedSlots: { customRender: 'text' }
|
customRender: (text, record) => (
|
||||||
|
<j-ellipsis value={ record.paidAmount + '元' } length={ 15 }></j-ellipsis>
|
||||||
|
)
|
||||||
}, {
|
}, {
|
||||||
title: '打包',
|
title: '打包',
|
||||||
align: 'center',
|
align: 'center',
|
||||||
|
|||||||
Reference in New Issue
Block a user