import { Component } from '@angular/core';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']
})
export class AppComponent {
title = 'untitled2906';
select= 0;//页面对应抽奖下标
timer:any;
ngOnInit() {
this.timer = setInterval(() => {
this.spinPrize()
}, 500)
}
spinPrize() {
this.select += 1
console.log("定时器为:" + this.select )
if (this.select == 5 ) {
clearInterval(this.timer)
console.log("中奖产品为:" + this.select )
}
}
}