Commit 129171c3 authored by 邓超's avatar 邓超

fix: 修改产品配置问题

parent 55b3d7f9
Pipeline #44758 passed with stages
in 6 minutes 22 seconds
......@@ -90,9 +90,6 @@ const ProductConfig = props => {
setLoading(false);
});
}, [flag]);
useEffect(() => {
console.log(productObj, 'productObj1111');
}, [productObj]);
// 展示新增抽屉
const handleAdd = () => {
......@@ -245,9 +242,12 @@ const ProductConfig = props => {
// onChange={changeBut(item)}
/>
</div>
<span className={classnames({ [styles.itemspan]: true })}>{`${item.ProductName}【${
{/* <span className={classnames({ [styles.itemspan]: true })}>{`${item.ProductName}【${
item.ProductType
}】`}</span>
}】`}</span> */}
<span className={classnames({ [styles.itemspan]: true })}>
{item.ProductType ? `${item.ProductName}【${item.ProductType}】` : item.ProductName}
</span>
</List.Item>
))}
</div>
......
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