修改抽奖滚动人员姓名时间未20毫秒

This commit is contained in:
wulin 2020-08-24 15:27:57 +08:00
parent 3416a086f8
commit 958f10b40e

View File

@ -60,7 +60,7 @@ export default {
timer: false, timer: false,
hasSendCode: false, hasSendCode: false,
query: { query: {
luckId: 2 luckId: 1//
}, },
data: [], data: [],
luckdata: [], luckdata: [],
@ -135,7 +135,7 @@ export default {
this.dataForm.uuid = this.requst.luckGoodsReqs[this.time].name this.dataForm.uuid = this.requst.luckGoodsReqs[this.time].name
setTimeout(() =>{ setTimeout(() =>{
this.randData(this.requst.luckGoodsReqs[this.time].counts) this.randData(this.requst.luckGoodsReqs[this.time].counts)
}, 10) }, 20)
} }
}, },
randData (count) { randData (count) {
@ -157,7 +157,7 @@ export default {
this.data = obj this.data = obj
setTimeout(() =>{ setTimeout(() =>{
this.randData(count) this.randData(count)
}, 10) }, 20)
} }
} }
} }