123456789 |
- @using WeApp.TrainingPortrait.Dto
- @using WeApp.Views.Shared.Camp
- @model GroupReportDto
- @{
- Layout = "~/Views/Shared/Layout/_Layout.Stu.cshtml";
- ViewBag.Title = $"{(Model.Name.IsEmpty() ? "" : $"[{Model.Name}] ")}演练报告";
- }
- @Html.Partial("Camp/_Report", new ReportModel(Model, false))
|