|
@@ -126,12 +126,18 @@ export default {
|
|
{
|
|
{
|
|
title: '税率',
|
|
title: '税率',
|
|
dataIndex: 'ipertaxrate',
|
|
dataIndex: 'ipertaxrate',
|
|
- width: 100
|
|
|
|
|
|
+ width: 100,
|
|
|
|
+ customRender: (text, record, index) => {
|
|
|
|
+ return text + '%'
|
|
|
|
+ }
|
|
},
|
|
},
|
|
{
|
|
{
|
|
title: '价税合计',
|
|
title: '价税合计',
|
|
dataIndex: 'iorisum',
|
|
dataIndex: 'iorisum',
|
|
- width: 100
|
|
|
|
|
|
+ width: 100,
|
|
|
|
+ customRender: (text, record, index) => {
|
|
|
|
+ return text.toFixed(2)
|
|
|
|
+ }
|
|
},
|
|
},
|
|
{
|
|
{
|
|
title: '采购状态',
|
|
title: '采购状态',
|