Commit 9bb1b190 authored by guang.wu's avatar guang.wu

fix: 修改投资金重量小数点保留两位

parent d704797b
...@@ -229,14 +229,14 @@ export const StaticColumns = customer => [ ...@@ -229,14 +229,14 @@ export const StaticColumns = customer => [
batchRole: [1], batchRole: [1],
batchProps: { batchProps: {
min: 0, min: 0,
precision: customer.isGold ? 0 : 3, precision: customer.isGold ? 2 : 3,
max: 999999.999, max: 999999.999,
}, },
role: [1], role: [1],
roleRules: { required: true }, roleRules: { required: true },
roleProps: { roleProps: {
min: 0, min: 0,
precision: customer.isGold ? 0 : 3, precision: customer.isGold ? 2 : 3,
max: 999999.999, max: 999999.999,
}, },
disabeldRender: () => customer.isDisabled, disabeldRender: () => customer.isDisabled,
......
...@@ -375,7 +375,7 @@ const ServiceGoods = options => { ...@@ -375,7 +375,7 @@ const ServiceGoods = options => {
} }
setPageLoading(false); setPageLoading(false);
})(); })();
}, [SourceData]); }, [SourceData, categoryIds]);
useEffect(() => { useEffect(() => {
if (options.visible) { if (options.visible) {
......
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