From a0fc549ad8c102d716e7b7618c67f40d105bf6c6 Mon Sep 17 00:00:00 2001 From: asesidaa <1061472754@qq.com> Date: Fri, 23 Sep 2022 19:56:02 +0800 Subject: [PATCH] Add initial ai section table --- TaikoWebUI/Pages/TaikoMode.razor | 26 ++++++++++++++++++++++++-- 1 file changed, 24 insertions(+), 2 deletions(-) diff --git a/TaikoWebUI/Pages/TaikoMode.razor b/TaikoWebUI/Pages/TaikoMode.razor index 375f727..185e815 100644 --- a/TaikoWebUI/Pages/TaikoMode.razor +++ b/TaikoWebUI/Pages/TaikoMode.razor @@ -89,7 +89,7 @@ - @((context.Item.ShowAiData == true) ? "Hide" : "Show") + @(context.Item.ShowAiData ? "Hide" : "Show") @@ -104,7 +104,29 @@ - + + + Section No + Is win? + Section Score + Section Crown + Section Good Count + Section Ok Count + Section Miss Count + Section Drumroll Count + + + @aiSectionContext.SectionIndex + @aiSectionContext.IsWin + @aiSectionContext.Score + @aiSectionContext.Crown + @aiSectionContext.GoodCount + @aiSectionContext.OkCount + @aiSectionContext.MissCount + @aiSectionContext.DrumrollCount + + }