40 lines
1.1 KiB
Plaintext
40 lines
1.1 KiB
Plaintext
|
|
@{
|
|
ViewBag.Title = "交易操作历史";
|
|
Layout = "~/Views/Shared/_InfoLayout.cshtml";
|
|
}
|
|
@section JS
|
|
{
|
|
<script type="text/javascript">
|
|
var enid='@ViewBag.Enid';
|
|
</script>
|
|
<script src="~/Scripts/app/swaptrade/OperationHistory.js?v=@HtmlUtil.JsVersion"></script>
|
|
}
|
|
<div class="p-4" id="VueDiv">
|
|
<table class="table table-bordered">
|
|
<colgroup>
|
|
<col span="1" width="150" />
|
|
<col span="1" width="120" />
|
|
<col span="1" />
|
|
<col span="1" width="300" />
|
|
</colgroup>
|
|
<thead>
|
|
<tr>
|
|
<th>操作时间</th>
|
|
<th>操作人</th>
|
|
<th class="text-left" style="width:10%">操作内容</th>
|
|
<th class="text-left" style="width:50%">说明</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr v-for="item in historyList">
|
|
<td>{{dateFormat(item.OptTime,'YYYY-MM-DD HH:mm:ss')}}</td>
|
|
<td>{{item.OptName}}</td>
|
|
<td>{{item.EventTypeName}}</td>
|
|
<td>{{item.EventReason}}</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|