|
|
|
@ -3,7 +3,7 @@
|
|
|
|
|
var index = 0;
|
|
|
|
|
}
|
|
|
|
|
<div class="row">
|
|
|
|
|
<div class="col-sm-3">
|
|
|
|
|
<div class="col-sm-2">
|
|
|
|
|
<div class="card">
|
|
|
|
|
<div class="card-body">
|
|
|
|
|
<ul class="navbar-nav">
|
|
|
|
@ -12,7 +12,7 @@
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="col-sm-9">
|
|
|
|
|
<div class="col-sm-10">
|
|
|
|
|
<form method="post" action="/" target="_self">
|
|
|
|
|
<div class="card">
|
|
|
|
|
<div class="card-header">
|
|
|
|
@ -62,7 +62,9 @@
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="card-body">
|
|
|
|
|
<table class="table table-hover text-nowrap">
|
|
|
|
|
<div class="row">
|
|
|
|
|
<div class="col-sm-12" style="overflow-x:auto;">
|
|
|
|
|
<table class="table table-bordered text-nowrap">
|
|
|
|
|
<tr>
|
|
|
|
|
<th><input type="checkbox" class="select_all" /></th>
|
|
|
|
|
<th>行号</th>
|
|
|
|
@ -73,6 +75,7 @@
|
|
|
|
|
<th>民族</th>
|
|
|
|
|
<th>籍贯</th>
|
|
|
|
|
<th>审核</th>
|
|
|
|
|
<th>重置</th>
|
|
|
|
|
<th>编辑</th>
|
|
|
|
|
<th>审计</th>
|
|
|
|
|
</tr>
|
|
|
|
@ -91,19 +94,21 @@
|
|
|
|
|
<td>@item.Nation</td>
|
|
|
|
|
<td>@item.NativePlace</td>
|
|
|
|
|
<td>
|
|
|
|
|
@if (User.IsInRole("局管理员") && Model.CheckStatus == "待局级审核")
|
|
|
|
|
@if (User.IsInRole("局管理员") && item.CheckStatus == "待局级审核")
|
|
|
|
|
{
|
|
|
|
|
<a href="@Url.Action("Details", new { userId = item.UserId })">审核</a>
|
|
|
|
|
<a href="@Url.Action("Details", new { userId = item.UserId })">局级审核</a>
|
|
|
|
|
}
|
|
|
|
|
@if (User.IsInRole("校管理员") && Model.CheckStatus == "待校级审核")
|
|
|
|
|
@if (User.IsInRole("校管理员") && item.CheckStatus == "待校级审核")
|
|
|
|
|
{
|
|
|
|
|
<a href="@Url.Action("Details", new { userId = item.UserId })">审核</a>
|
|
|
|
|
<a href="@Url.Action("Details", new { userId = item.UserId })">校级审核</a>
|
|
|
|
|
}
|
|
|
|
|
@if (User.IsInRole("局管理员") && Model.CheckStatus == "局级审核成功")
|
|
|
|
|
</td>
|
|
|
|
|
<td>
|
|
|
|
|
@if (User.IsInRole("局管理员") && item.CheckStatus == "局级审核成功")
|
|
|
|
|
{
|
|
|
|
|
<a href="@Url.Action("Details", new { userId = item.UserId })">重置</a>
|
|
|
|
|
}
|
|
|
|
|
@if (User.IsInRole("校管理员") && Model.CheckStatus == "待校级审核")
|
|
|
|
|
@if (User.IsInRole("校管理员") && item.CheckStatus == "待校级审核")
|
|
|
|
|
{
|
|
|
|
|
<a href="@Url.Action("Details", new { userId = item.UserId })">重置</a>
|
|
|
|
|
}
|
|
|
|
@ -121,6 +126,8 @@
|
|
|
|
|
}
|
|
|
|
|
</table>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="card-footer">
|
|
|
|
|
@(await Html.PartialAsync("_Paged"))
|
|
|
|
|
</div>
|
|
|
|
|