这里只写setInterval
//每次点击事情先清除定时器
clearInterval(a)
var a=setInterval(function () {
that.payMaText--;
if(that.payMaText<=1){
that.sendPayMa=false;
that.payMaText='重新发送';
//满足条件清除定时器
clearInterval(a)
}
},1000)