Commit 8df6ba5d authored by 前端-钟卫鹏's avatar 前端-钟卫鹏

fix: 商品详情添加税率显示

parent 135a0624
......@@ -550,6 +550,14 @@ const viewProducts: React.FC<{}> = () => {
<p>{productDetail?.isInvoice?'是':'否'}</p>
</Col>
</Row>
<Row>
<Col span={4}>
<p>税率:</p>
</Col>
<Col span={20}>
<p>{productDetail?.taxRate}</p>
</Col>
</Row>
{
productDetail?.marks &&
<Row>
......
......@@ -508,6 +508,14 @@ const viewProducts: React.FC<{}> = () => {
<p>{productDetail?.isInvoice?'是':'否'}</p>
</Col>
</Row>
<Row>
<Col span={4}>
<p>税率:</p>
</Col>
<Col span={20}>
<p>{productDetail?.taxRate}</p>
</Col>
</Row>
{
productDetail?.marks &&
<Row>
......
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