data () {
return {
uploadSucNubber: 5
}
},
methods: {
countDown () {
var _this = this
if (this.uploadSucNubber > 0) {
this.uploadSucNubber--
setTimeout(function () {
_this.countDown()
}, 1000)
} else if (this.uploadSucNubber === 0) {
console.log('倒计时结束')
}
}
}