Commit 2ed6eef6 authored by Bill's avatar Bill

fix: 修改结算bug

parent 3356853a
...@@ -107,7 +107,7 @@ const SettlementList = () => { ...@@ -107,7 +107,7 @@ const SettlementList = () => {
title: '含税/税率', title: '含税/税率',
dataIndex: 'tax', dataIndex: 'tax',
render: (text, record) => { render: (text, record) => {
return record.isHasTax ? `${record.isHasTaxName}/${record.taxRate}` : '否'; return record.isHasTax ? `${record.isHasTaxName}/${record.taxRate * 100}%` : '否';
} }
}, },
{ {
......
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