86 lines
3.1 KiB
Plaintext
86 lines
3.1 KiB
Plaintext
|
|
@model List<Face.Domain.Entities.OperationLog>
|
||
|
|
@{
|
||
|
|
Layout = "~/Views/Shared/_Layout.cshtml";
|
||
|
|
List<Face.Domain.Entities.AdminUser> UserList = Face.Services.Cache.CxwCacheHelp.GetUserList();//用户
|
||
|
|
|
||
|
|
}
|
||
|
|
<link href="~/Theme/font-awesome/css/font-awesome.css" rel="stylesheet" />
|
||
|
|
<link href="~/Theme/css/plugins/dataTables/datatables.min.css" rel="stylesheet" />
|
||
|
|
|
||
|
|
<div class="row wrapper border-bottom white-bg page-heading">
|
||
|
|
<div class="col-lg-10">
|
||
|
|
<ol class="breadcrumb">
|
||
|
|
<li>
|
||
|
|
<a href="@Url.Action("Index", "CxwHome")">主页</a>
|
||
|
|
</li>
|
||
|
|
<li class="active">
|
||
|
|
<strong>权限列表</strong>
|
||
|
|
</li>
|
||
|
|
</ol>
|
||
|
|
</div>
|
||
|
|
<div class="col-lg-2">
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<div class="wrapper wrapper-content animated fadeInRight">
|
||
|
|
<div class="row">
|
||
|
|
<div class="col-sm-8" style="padding:0px">
|
||
|
|
<div class="ibox float-e-margins">
|
||
|
|
<div class="ibox-title">
|
||
|
|
<select id="username" class="form-control username" style="display:inline;width:90px;">
|
||
|
|
<option value="0">所有人</option>
|
||
|
|
@if (UserList != null && UserList.Count > 0)
|
||
|
|
{
|
||
|
|
foreach (var item in UserList)
|
||
|
|
{
|
||
|
|
if (item.AdminName != "admin")
|
||
|
|
{
|
||
|
|
<option value="@item.AdminName">@item.AdminName</option>
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
</select>
|
||
|
|
|
||
|
|
</div>
|
||
|
|
<div class="ibox-content" style="padding:0px">
|
||
|
|
<div class="table-responsive">
|
||
|
|
<table class="table table-striped table-bordered table-hover " id="editable">
|
||
|
|
<thead>
|
||
|
|
<tr>
|
||
|
|
@*<th>#</th>*@
|
||
|
|
<th>名字</th>
|
||
|
|
<th>时间</th>
|
||
|
|
<th>操作</th>
|
||
|
|
<th>IP</th>
|
||
|
|
<th>型号</th>
|
||
|
|
<th>浏览器</th>
|
||
|
|
</tr>
|
||
|
|
</thead>
|
||
|
|
<tbody>
|
||
|
|
|
||
|
|
|
||
|
|
</tbody>
|
||
|
|
</table>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<div class="col-sm-4" id="orderBox_Content">
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<script src="~/Theme/js/plugins/peity/jquery.peity.min.js"></script>
|
||
|
|
<script src="~/Theme/js/plugins/dataTables/datatables.min.js"></script>
|
||
|
|
@*时间*@
|
||
|
|
<script src="~/Theme/js/plugins/datapicker/bootstrap-datepicker.js"></script>
|
||
|
|
<script src="~/Theme/js/plugins/datapicker/locales/bootstrap-datepicker.zh-CN.js"></script>
|
||
|
|
|
||
|
|
<script src="~/Theme/js/demo/peity-demo.js"></script>
|
||
|
|
|
||
|
|
<script src="~/CxwPlugin/mobile-detect.min.js"></script>
|
||
|
|
<script src="~/CxwPlugin/AddCookie.js"></script>
|
||
|
|
<script src="~/CxwPlugin/OperationLog.js"></script>
|
||
|
|
|