Commit a8cef2fd authored by 前端-许冠华's avatar 前端-许冠华

Merge branch 'v2-220418' into 'v2-220418'

fix: 修改采购单报价详情授标结果单价(含税)位数保留4位 See merge request linkseeks-design/pro-platform!733 (cherry picked from commit 1cf4ec0f) 68dc1023 fix: 修改采购单报价详情授标结果单价(含税)位数保留4位
parent ea65a9b5
......@@ -101,7 +101,7 @@ const BidInfoLayout: React.FC<BidInfoProps> = (props: any) => {
title: intl.formatMessage({ id: 'detail.purchase.taxUnitPrice' }),
key: 'taxUnitPrice',
dataIndex: 'taxUnitPrice',
render: (text: any, record: any) => <Typography.Text>{intl.formatMessage({ id: 'common.money' })}{text.toFixed(2)}</Typography.Text>
render: (text: any, record: any) => <Typography.Text>{intl.formatMessage({ id: 'common.money' })}{text.toFixed(4)}</Typography.Text>
},
{
title: (
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment