WaterHong

Results 2 comments of WaterHong

> ```js > function add(num1, num2) { > const num1Digits = (num1.toString().split('.')[1] || '').length; > const num2Digits = (num2.toString().split('.')[1] || '').length; > const baseNum = Math.pow(10, Math.max(num1Digits, num2Digits)); > return...

我也遇到了,并且是antd自己的样式优先级变了,有解决办法吗