123456789101112131415161718192021222324252627 |
- export default {
- data() {
- return {
- disabled: false,
- text: '获取验证码'
- }
- },
- methods: {
- sendCode() {
- if (this.disabled) return
- this.disabled = true
- let n = 60
- this.text = n + 's后重新发送'
- const run = setInterval(() => {
- n = n - 1
- if (n < 0) {
- clearInterval(run)
- }
- this.text = n + 's后重新发送'
- if (this.text < 0 + 's后重新发送') {
- this.disabled = false
- this.text = '重新获取'
- }
- }, 1000)
- }
- }
- }
|