71 lines
2.0 KiB
Plaintext
71 lines
2.0 KiB
Plaintext
@{
|
|
ViewBag.Title = "监控日志";
|
|
Layout = "~/Views/Shared/_MainLayout.cshtml";
|
|
var valueDate = valuedateBLL.ValueDate.ToSqlDate();
|
|
}
|
|
|
|
@section CSS{
|
|
<style>
|
|
.underlying-price {
|
|
position: relative;
|
|
}
|
|
|
|
.underlying-price > .text-show {
|
|
display: block;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.underlying-price > .input-show {
|
|
display: none;
|
|
position: relative;
|
|
}
|
|
|
|
.underlying-price > .input-show > input {
|
|
width: 100%;
|
|
height: 21px;
|
|
}
|
|
|
|
.underlying-price > .input-show > .close {
|
|
position: absolute;
|
|
right: 6px;
|
|
top: 3px;
|
|
}
|
|
|
|
.underlying-price.input > .text-show {
|
|
display: none;
|
|
}
|
|
|
|
.underlying-price.input > .input-show {
|
|
display: block;
|
|
}
|
|
</style>
|
|
}
|
|
|
|
@section JS{
|
|
<script>
|
|
$("#DateFromCreateTime").val("@valueDate");
|
|
$("#DateToCreateTime").val("@valueDate");
|
|
</script>
|
|
<script src="~/Scripts/app/riskchecklog/riskchecklog.js?v=@(HtmlUtil.JsVersion)"></script>
|
|
}
|
|
|
|
<div class="searchdiv">
|
|
@Html.SearchDateRange("CreateTime", "触碰日期")
|
|
@Html.ShortInput("TradeNumber", "交易编号")
|
|
@Html.ShortInput("ClientNumber", "客户编号")
|
|
@Html.ShortInput("ClientName", "客户名称")
|
|
@Html.ShortInput("Trader", "操作人")
|
|
@Html.MyAceDropdownInput("TrialResult", "预警结果", RiskCheckLogController.GetRiskCheckLogResult(),appendEmptyAll:false,multiple:true)
|
|
<div class="search-group">
|
|
@MyControls.SearchBtn()
|
|
<button class="btn btn-primary" onclick="exportExcel()">导出</button>
|
|
</div>
|
|
</div>
|
|
|
|
@Html.Raw(JqGridSimple.OutTable())
|
|
|
|
<form target="_blank" method="post" id="exportForm" action="">
|
|
<input type="hidden" name="" value="" />
|
|
</form>
|
|
|