|
@@ -104,7 +104,8 @@ namespace GFGGame
|
|
|
if (LeagueDataManager.Instance.LastAnswerRoleData.LastQuestionResult == LastQuestionResult.Ending)
|
|
|
{
|
|
|
LeagueSproxy.ReqQuitAnswer().Coroutine();
|
|
|
- ViewManager.GoBackFrom(typeof(LeagueAnsweringView).FullName);
|
|
|
+ // ViewManager.GoBackFrom(typeof(LeagueAnsweringView).FullName);
|
|
|
+ Hide();
|
|
|
}
|
|
|
else
|
|
|
{
|
|
@@ -113,7 +114,8 @@ namespace GFGGame
|
|
|
.SetRightButton(true, "是", (object data) =>
|
|
|
{
|
|
|
LeagueSproxy.ReqQuitAnswer().Coroutine();
|
|
|
- ViewManager.GoBackFrom(typeof(LeagueAnsweringView).FullName);
|
|
|
+ // ViewManager.GoBackFrom(typeof(LeagueAnsweringView).FullName);
|
|
|
+ Hide();
|
|
|
});
|
|
|
}
|
|
|
}
|
|
@@ -156,7 +158,8 @@ namespace GFGGame
|
|
|
if (endTime - curTime < 0 && LeagueDataManager.Instance.GetNumeriValue(LeagueNumericType.LeagueQuestionStatus) == LeagueQuestionStatus.End)
|
|
|
{
|
|
|
Timers.inst.Remove(UpdateResultTime);
|
|
|
- ViewManager.GoBackFrom(typeof(LeagueAnsweringView).FullName);
|
|
|
+ // ViewManager.GoBackFrom(typeof(LeagueAnsweringView).FullName);
|
|
|
+ Hide();
|
|
|
return;
|
|
|
}
|
|
|
_ui.m_txtTime.text = string.Format("{0}{1}", str, TimeUtil.FormattingTimeTo_mmss(endTime - curTime));
|