Files
zszq-trs/YLErpWeb/Views/ExchangeTrade/TradeListSingle.cshtml
T
2024-05-09 14:06:26 +08:00

30 lines
913 B
Plaintext

@model YLErp.Modules.ExchangeTradeModule.ExchangeTradeReq
@{
ViewBag.Title = "标的历史对冲交易记录";
Layout = "~/Views/Shared/_InfoLayout.cshtml";
var pageObj = new
{
IsOption = Model.IsOption,
PostData = Model
};
}
@section JS{
<script>
var page = @Json.Serialize(pageObj);
</script>
<script src="~/Scripts/app/tradeHelper.js?v=@HtmlUtil.JsVersion"></script>
<script src="~/Statics/libs/export/excellentexport.js?v=@(HtmlUtil.JsVersion)"></script>
<script src="~/Scripts/app/trade/exchange/tradeList.js?v=@(HtmlUtil.JsVersion)"></script>
}
<table id="excelTable" style="display:none"></table>
<a onfocus="this.blur();" style="display:none;" download="code.xls" id="createInvote2" class="ipt-todo hide">code</a>
<div class="searchdiv">
@MyControls.Btn("导出", "exportTradeChoose()")
</div>
@Html.Raw(JqGridSimple.OutTable())