123456789101112131415 |
- @using WeApp.Views.Shared.Camp
- @{
- SelectCampModel selectModel = ViewBag.Select;
- ViewBag.Title = selectModel.PageTitle;
- }
- <style>
- .content-wrapper {
- padding: 0!important;
- }
- .body {
- width: 100% !important;
- height: calc(100vh - 140px) !important;
- }
- </style>
- @Html.Partial("Camp/_SelectCampV2",selectModel)
|