setInterval:"timers",
hour: '0' + 0,
minute: '0' + 0,
second: '0' + 0
},
timer: function () {
const that = this
var second = that.data.second
var minute = that.data.minute
var hour = that.data.hour
that.data.setInter = setInterval(function () {。。。。。。。。。。。
stoptimer : function () {
var that =this ;
clearInterval(this.data.setInter)
},