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

Merge branch 'fix-v2' into 'v2'

Fix v2 See merge request linkseeks-design/pro-platform!38
parents aee7f089 5e6517c5
This diff is collapsed.
...@@ -27,7 +27,7 @@ const ProductQuoteLayout: React.FC<ProductQuoteLayoutProps> = (props: any) => { ...@@ -27,7 +27,7 @@ const ProductQuoteLayout: React.FC<ProductQuoteLayoutProps> = (props: any) => {
const count = (num: any, price: any) => { const count = (num: any, price: any) => {
let money: any = null; let money: any = null;
money = (Number(price) * 1) * Number(num); money = (Number(price) * 1) * Number(num);
return Number(money).toFixed(2); return Number(money).toFixed(2)
} }
const handleChange = (id, e) => { const handleChange = (id, e) => {
const { value } = e.target const { value } = e.target
...@@ -37,6 +37,7 @@ const ProductQuoteLayout: React.FC<ProductQuoteLayoutProps> = (props: any) => { ...@@ -37,6 +37,7 @@ const ProductQuoteLayout: React.FC<ProductQuoteLayoutProps> = (props: any) => {
v.money = count(v.purchaseCount, value); v.money = count(v.purchaseCount, value);
} }
}) })
console.log(dataSource)
setDataSource([...dataSource]); setDataSource([...dataSource]);
} }
...@@ -104,7 +105,8 @@ const ProductQuoteLayout: React.FC<ProductQuoteLayoutProps> = (props: any) => { ...@@ -104,7 +105,8 @@ const ProductQuoteLayout: React.FC<ProductQuoteLayoutProps> = (props: any) => {
{ {
title: intl.formatMessage({id: 'dealAbility.jine'}), title: intl.formatMessage({id: 'dealAbility.jine'}),
key: "money", key: "money",
dataIndex: "money" dataIndex: "money",
render: (text: any) => <>{text}</>
}, },
{ {
title: intl.formatMessage({ id: 'dealAbility.caozuo' }), title: intl.formatMessage({ id: 'dealAbility.caozuo' }),
...@@ -221,6 +223,8 @@ const ProductQuoteLayout: React.FC<ProductQuoteLayoutProps> = (props: any) => { ...@@ -221,6 +223,8 @@ const ProductQuoteLayout: React.FC<ProductQuoteLayoutProps> = (props: any) => {
}) })
}, [commoditySkuId]) }, [commoditySkuId])
console.log(dataSource)
return ( return (
<Card <Card
id="productQuoteLayout" id="productQuoteLayout"
......
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