Report.cshtml 235 B

12345678
  1. @using WeApp.TrainingPortrait.Dto
  2. @using WeApp.Views.Shared.Camp
  3. @model GroupReportDto
  4. @{
  5. ViewBag.Title = $"{(Model.Name.IsEmpty() ? "" : $"[{Model.Name}] ")}演练报告";
  6. }
  7. @Html.Partial("Camp/_Report",new ReportModel(Model))