Commit 0fae3569 authored by XieZhiXiong's avatar XieZhiXiong

fix: 修复税点值对应不上enum的问题

parent d1176412
...@@ -146,7 +146,7 @@ const MemberDocCategory: React.FC<DocCategoryProps> = (props: DocCategoryProps) ...@@ -146,7 +146,7 @@ const MemberDocCategory: React.FC<DocCategoryProps> = (props: DocCategoryProps)
month: month ? `${month}` : '', month: month ? `${month}` : '',
monthDay: monthDay ? `${monthDay}` : '', monthDay: monthDay ? `${monthDay}` : '',
days: days ? `${days}` : '', days: days ? `${days}` : '',
taxPoint: +taxPoint, taxPoint: +taxPoint * 100,
...rest ...rest
})), })),
}); });
......
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