|
|
@ -99,13 +99,13 @@ export default class BasicProfile extends Component { |
|
|
title: '单价', |
|
|
title: '单价', |
|
|
dataIndex: 'price', |
|
|
dataIndex: 'price', |
|
|
key: 'price', |
|
|
key: 'price', |
|
|
className: 'col-money', |
|
|
align: 'right', |
|
|
render: renderContent, |
|
|
render: renderContent, |
|
|
}, { |
|
|
}, { |
|
|
title: '数量(件)', |
|
|
title: '数量(件)', |
|
|
dataIndex: 'num', |
|
|
dataIndex: 'num', |
|
|
key: 'num', |
|
|
key: 'num', |
|
|
className: 'col-money', |
|
|
align: 'right', |
|
|
render: (text, row, index) => { |
|
|
render: (text, row, index) => { |
|
|
if (index < basicGoods.length) { |
|
|
if (index < basicGoods.length) { |
|
|
return text; |
|
|
return text; |
|
|
@ -116,7 +116,7 @@ export default class BasicProfile extends Component { |
|
|
title: '金额', |
|
|
title: '金额', |
|
|
dataIndex: 'amount', |
|
|
dataIndex: 'amount', |
|
|
key: 'amount', |
|
|
key: 'amount', |
|
|
className: 'col-money', |
|
|
align: 'right', |
|
|
render: (text, row, index) => { |
|
|
render: (text, row, index) => { |
|
|
if (index < basicGoods.length) { |
|
|
if (index < basicGoods.length) { |
|
|
return text; |
|
|
return text; |
|
|
|