fix(补钞机): 延长错误页面的停留时长至8秒

原2秒的停留时间过短,用户无法及时看清错误提示内容
This commit is contained in:
2026-06-28 13:30:30 +08:00
parent 0a70ffe931
commit 81debd3b55
+1 -1
View File
@@ -550,7 +550,7 @@ local function refillLoop()
local errMessage = okCall and tostring(newBalance or "refill_failed") or "refill_call_failed" local errMessage = okCall and tostring(newBalance or "refill_failed") or "refill_call_failed"
drawErrorPage(errMessage) drawErrorPage(errMessage)
sleep(2) sleep(8)
state.page = "home" state.page = "home"
return return
end end