1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- @{
- ViewBag.Title = "页面选择";
- Layout = "~/Views/Shared/Layout/_Layout.Stu.cshtml";
- }
- @section styles{
- <link href="~/Content/Css/ExerciseV2/stu-bg.min.css" rel="stylesheet" />
- <style>
- .box {
- width: 100vw;
- height: 100vh;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- #bg_title {
- position: absolute;
- top: 0;
- }
- .btn-box {
- width: 400px;
- display: flex;
- flex-direction: column;
- }
- .btn-box .btn {
- margin: 8px 0;
- font-size: 16px!important;
- padding: 10px;
- }
- </style>
- }
- @Html.Partial("Layout/V2/_Bg", true)
- <div class="box">
- <div id="bg_title">
- <span class="title">页面中心</span>
- </div>
- <div class="btn-box">
- <a class="btn" href="@Url.Action("Select", "ExerciseV2", new { id = 4 })">专家屏</a>
- <a class="btn" href="@Url.Action("Select", "ExerciseV2", new { id = 3 })">公共屏</a>
- <a class="btn" href="@Url.Action("Select", "ExerciseV2", new { id = 1 })">组员</a>
- <a class="btn" href="@Url.Action("Select", "ExerciseV2", new { id = 2 })">指挥长</a>
- <a class="btn" href="@Url.Action("Play", "ExerciseV2")">主屏</a>
- <a class="btn" href="@Url.Action("Select", "ExerciseV2", new { id = 5 })">手动记录演练情况</a>
- </div>
- </div>
|