You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
iot/labs/Teacher/TeacherExt/Views/Home/History.cshtml

51 lines
1.9 KiB

@model QueryHistoryModel
@{
var index = 0;
}
<div class="row">
<div class="col-sm-12">
<form method="post" action="/" target="_self">
<div class="card">
<div class="card-header">
<div class="row">
<div class="col-12">
<button type="button" id="query" class="btn btn-primary" data-method="get" data-target="_self" data-action="@Url.Action("Index")">
查询
</button>
</div>
</div>
</div>
<div class="card-body">
<table class="table table-hover text-nowrap">
<tr>
<th>行号</th>
<th>审核时间</th>
<th>审核人</th>
<th>教师姓名</th>
<th>登录名</th>
<th>审核前状态</th>
<th>审核后状态</th>
</tr>
@foreach (var item in Model.List)
{
index++;
<tr>
<td>@index</td>
<td>@item.UpdateAt</td>
<td>@item.UpdateRealName</td>
<td>@item.UpdateBy</td>
<td>@item.RealName</td>
<td>@item.LoginName</td>
<td>@item.FromStatus</td>
<td>@item.ToStatus</td>
</tr>
}
</table>
</div>
<div class="card-footer">
@(await Html.PartialAsync("_Paged"))
</div>
</div>
</form>
</div>
</div>