@using WeApp.Helpers @model List @if (Model?.Count > 0) {
@for (int i = 0; i < Model.Count; i++) { var group = Model[i]; 当前组别:@(group.Name) }
@for (int i = 0; i < Model.Count; i++) { var group = Model[i];
@Html.Partial("/Views/Play/__/_SceneInfo.cshtml", $"{group.Id}#{(i == 0 ? 1 : 0)}#2")
@Html.Partial("/Views/Play/__/_SceneScore.cshtml", $"{group.Id}#{(i == 0 ? 1 : 0)}#2")
@Html.Partial("/Views/Play/__/_SceneFlow.cshtml", $"{group.Id}#{(i == 0 ? 1 : 0)}#2")
}
} @using (Html.BeginScripts()) { }