44 lines
1.3 KiB
Plaintext
44 lines
1.3 KiB
Plaintext
@model IEnumerable<ClientCashLog>
|
|
|
|
@{
|
|
ViewBag.Title = "操作历史";
|
|
Layout = "~/Views/Shared/_InfoLayout.cshtml";
|
|
}
|
|
|
|
@section CSS{
|
|
<link href="~/Statics/libs/bstable/bootstrap-table.css" rel="stylesheet" />
|
|
}
|
|
@section JS{
|
|
<script src="~/Statics/libs/bstable/bootstrap-table.min.js?v=@(HtmlUtil.JsVersion)"></script>
|
|
<script src="~/Statics/libs/bstable/bootstrap-table-zh-CN.js?v=@(HtmlUtil.JsVersion)"></script>
|
|
}
|
|
|
|
<div class="p-4">
|
|
<table id="table1" class="table-sm" data-toggle="table">
|
|
<colgroup>
|
|
<col span="1" width="150" />
|
|
<col span="1" width="120" />
|
|
<col span="1" />
|
|
<col span="1" width="300" />
|
|
</colgroup>
|
|
<thead>
|
|
<tr>
|
|
<th class="text-center">操作时间</th>
|
|
<th class="text-center">操作人</th>
|
|
<th class="text-left">操作内容</th>
|
|
<th class="text-left">说明</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
@foreach (var item in Model)
|
|
{
|
|
<tr>
|
|
<td>@(item.OptDate.ToString("yyyy-MM-dd HH:mm:ss"))</td>
|
|
<td>@(item.OptName)</td>
|
|
<td>@(item.OptType)</td>
|
|
<td>@(item.Changes)</td>
|
|
</tr>
|
|
}
|
|
</tbody>
|
|
</table>
|
|
</div> |