Files
zszq-trs/YLErpWeb/Views/SwapTrade2/EventList.cshtml
T

31 lines
1.2 KiB
Plaintext

@{
ViewBag.Title = "互换开平仓事件流水";
ViewBag.Menu = "交易管理-互换开平仓事件流水";
Layout = "~/Views/Shared/_MainLayout.cshtml";
var valueDate = valuedateBLL.ValueDate.ToSqlDate();
}
@section JS{
<script>
var page = {
valueDate: '@valueDate'
}
</script>
<script src="~/front/calendar?v=@(HtmlUtil.JsVersion)"></script>
<script src="~/Scripts/app/tradeHelper.js?v=@HtmlUtil.JsVersion"></script>
<script src="~/Scripts/app/swaptrade/eventlist.js?v=@HtmlUtil.JsVersion"></script>
}
<div id="eventVue">
<div class="searchdiv">
@Html.SearchDateRange("event_date", "事件日期")
@Html.ShortInput("TradeNumber", "交易编码")
@Html.ShortInput("UnderlyingCode", "标的代码")
<button class="btn btn-primary" onclick="SearchClick()"><span class="glyphicon glyphicon-search"></span>查询</button>
<button class="btn btn-primary" onclick="ExportClick()"><span class="glyphicon"></span>导出</button>
</div>
<div style="width:98%">
@Html.Raw(JqGridSimple.OutTable())
</div>
</div>
<form target="_blank" method="post" id="exportForm" action="">
<input type="hidden" name="" value="" />
</form>