51 lines
1.6 KiB
Plaintext
51 lines
1.6 KiB
Plaintext
@{
|
|
ViewBag.Title = "持仓报送报表";
|
|
Layout = "~/Views/Shared/_MainLayout.cshtml";
|
|
var pageObj = new
|
|
{
|
|
valueDate = ViewBag.valueDate,
|
|
IsGuoTou = YLErp.PS.Config.Is国投,
|
|
columnConfigName = configcolumn_data.监管持仓报告
|
|
};
|
|
}
|
|
@section CSS{
|
|
<style>
|
|
#DateValueDate {
|
|
width: 152px !important;
|
|
font-size: 1rem !important;
|
|
}
|
|
</style>
|
|
}
|
|
@section JS{
|
|
|
|
<script src="~/Scripts/app/superviseReport/positionReport.js?v=@HtmlUtil.JsVersion"></script>
|
|
<script type="text/javascript">
|
|
var pageObj = @Json.Serialize(pageObj);
|
|
$(function () {
|
|
var PostData = { ValueDate: pageObj.valueDate, DataSource:"持仓,全量"};
|
|
@Html.Raw(JqGridSimple.OutGrid("/supervise_report/supervisePositionReportQuery", isMultiSelect: false));
|
|
});
|
|
</script>
|
|
}
|
|
<style>
|
|
.no-skin {
|
|
position: static !important;
|
|
}
|
|
</style>
|
|
|
|
<div class="searchdiv">
|
|
@Html.SearchDate("ValueDate", "日期")
|
|
<div class="search-group">
|
|
<label class="control-label name-input" for="formGroupInputLarge">波动率类型</label>
|
|
<select class="select" id="volType">
|
|
@Html.Raw(GlobalData.GetOptions(new[] { "持仓", "开仓" }));
|
|
</select>
|
|
</div>
|
|
<label class="control-label name-input" for="formGroupInputLarge">数据源</label>
|
|
<select class="select" id="DataSource">
|
|
@Html.Raw(GlobalData.GetOptions(new[] { "全量", "商品", "权益" }));
|
|
</select>
|
|
@MyControls.SearchBtn()
|
|
@MyControls.Btn("导出", "exportToFile()")
|
|
</div>
|
|
@Html.Raw(JqGridSimple.OutTable()) |