uview-plus icon indicating copy to clipboard operation
uview-plus copied to clipboard

up-code

Open houqingbin opened this issue 1 year ago • 1 comments

up-code组件在uniapp h5中使用:keepRunning="true"刷新后会丢失验证码倒计时 <up-code ref="uCodeRef" @change="codeChange" :seconds="seconds" :keepRunning="true" uniqueKey="page-b" @start="start" :changeText="changeText">

"uview-plus": "^3.3.37",

houqingbin avatar Oct 30 '24 07:10 houqingbin

到code组件源码文件中 在setTimeToStorage内,把if(this.secNum > 0 && this.secNum < this.seconds)改成if(this.secNum > 0 && this.secNum <= this.seconds)

cps8 avatar Oct 31 '24 05:10 cps8