MidasLi

Results 5 comments of MidasLi

Thanks for your guidance. In fact, I also made a similar module, it can also do expression evaluation, and without the need for logical expressions with parentheses and the operator...

Attached is the file, please receive it. [Calc.zip](https://github.com/exilon/QuickLib/files/5956123/Calc.zip)

muitl columns sort like this TS example? let a = [ ['a01', 'English', 100], ['a01', 'math', 99], ['a02', 'English', 80], ['a02', 'math', 88], ['a03', 'Physics', 99], ['a04', 'Physics', 55], ['a08',...

我也遇到同样问题,不过算是解决了: app.scss ``` $color-text-base: skyblue ; // 文字的基本色 @import "~taro-ui/dist/style/index"; ``` Login.tsx `AtButton` 主要原因不是Button类,而是AtButton。而且这办法首时编译比较慢和卡。 而Button类的确要用楼上的办法。在调试时看到用的是什么类名,就写css覆盖即可。 总言之,自定义主题,团队好象未完全做好,但是关系并不大,因为自己要做处理也非常简单,上面办法写css放到全局, 再扩展也方便。 另外发现,如果app.scss的代码是: `@import "~taro-ui/dist/style/components/button.scss";` 这样就会快很多。

我利用空余时间也写了一个: function extendNumDoubles(n: number, timesNum: number): number { let s = n.toString(); let index = s.indexOf('.'); if (index === -1) return Number(s + '0'.repeat(timesNum)); else { let strLen = s.length;...