在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
用uni-app写了一段发送验证码的代码 <view class="cu-form-group"> 在浏览器中能够正常运行,改成在支付宝小程序模拟器中跑了一遍,发现v-show指令失效,第二个button也显示出来了 于是改用:style <view class="cu-form-group"> 当然这里也可以使用 :class 应该也能达到一样的效果 附上我的methods
methods: { getCode() { const TIME_COUNT = 60; if (!this.timer) { this.count = TIME_COUNT; this.show = false; this.timer = setInterval(() => { if (this.count > 0 && this.count <= TIME_COUNT) { this.count--; } else { this.show = true; clearInterval(this.timer); this.timer = null; } }, 1000) } } } 可以拿去直接用 |
请发表评论