去掉每秒刷新赔率

dev_chengFeng
zhangqiang 2020-07-11 16:04:39 +08:00
parent 4a0ee0c3dc
commit 28f2a1c4f4
1 changed files with 9 additions and 9 deletions

View File

@ -175,15 +175,15 @@ function ATM_GuessView:OnOpen(...)
this.RefreshBaseShow()
end,false)
-- 刷新时间显示
local function _TimeUpdate()
-- 每秒刷新赔率
ArenaTopMatchManager.RequestBetRateInfo()
end
if not this.timer then
_TimeUpdate()
this.timer = Timer.New(_TimeUpdate, 1 , -1, true)
this.timer:Start()
end
-- local function _TimeUpdate()
-- -- 每秒刷新赔率
-- ArenaTopMatchManager.RequestBetRateInfo()
-- end
-- if not this.timer then
-- _TimeUpdate()
-- this.timer = Timer.New(_TimeUpdate, 1 , -1, true)
-- this.timer:Start()
-- end
this.RefreshGuessTipView()
end