标签:vue

vue

vue监听页面大小变化

vue监听页面大小变化
vue监听页面大小变化 mounted: function () { window.addEventListener('resize', this.getHeight) }, beforeRouteLeave(to, from, next) { ...

4年前 (2020-12-30) 喜欢

uniapp

js银行卡号脱敏

js银行卡号脱敏
保留前三位后三位 let accountNo = '123456789123456789' accountNo.substr(0,3) + '******' + accountNo.substr(accountNo.length - 3) 保...

4年前 (2020-12-22) 喜欢