Commit 2147266e authored by 卢均锐's avatar 卢均锐

fix: [22116] 竞价详情,点击我要报价,单价多了$符号

parent f7dad690
......@@ -83,7 +83,7 @@ const DetailBottomDrawer: React.FC<DetailBottomDrawerProps> = (props: any) => {
dataIndex: 'unitPrice',
key: 'unitPrice',
render: (text: any, record: any, index: number) => (activeItem ?
<Text type='secondary' key={'unitPrice_1'} >${intl.formatMessage({id: 'common.money'})}{priceFormat(record.unitPrice)}</Text>
<Text type='secondary' key={'unitPrice_1'} >{intl.formatMessage({id: 'common.money'})}{priceFormat(record.unitPrice)}</Text>
:
<Form.Item
name={`unitPrice_${index}`}
......
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