- 博客(8)
- 收藏
- 关注
原创 日常记录#4 二次封装element的toolTip,在文字超出宽度时展示toolTip,支持rowNum:超出rowNum行后显示省略号
二次封装tooltip
2022-09-22 09:59:26
249
原创 日常记录#2 设置页面的REM
let deviceWidth = document.documentElement.clientWidthif (deviceWidth > 750) deviceWidth = 750document.documentElement.style.fontSize = deviceWidth / 7.5 + 'px'
2021-09-26 19:45:10
59
原创 日常记录#1 毫秒格式化
日常记录#1 毫秒格式化const timeRE = /([hms])\1?/gconst oneHour = 1000 * 60 * 60const oneMinute = 1000 * 60const oneSeconds = 1000export const FormatTime = (t: number, mask = 'hh:mm:ss'): string => { let h = Math.floor(t / oneHour) let m = Math.floor((t %
2021-09-26 19:37:43
71
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人