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

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

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