58 lines
2.4 KiB
Plaintext
58 lines
2.4 KiB
Plaintext
@{
|
|
ViewBag.Title = "客户资金报送报表";
|
|
Layout = "~/Views/Shared/_MainLayout.cshtml";
|
|
var pageObj = new
|
|
{
|
|
valueDate = ViewBag.valueDate,
|
|
};
|
|
}
|
|
@section CSS{
|
|
<style>
|
|
#DateValueDate {
|
|
width: 152px !important;
|
|
font-size: 1rem !important;
|
|
}
|
|
</style>
|
|
}
|
|
@section JS{
|
|
|
|
<script src="~/Scripts/app/superviseReport/clientCash.js?v=@HtmlUtil.JsVersion"></script>
|
|
<script type="text/javascript">
|
|
var pageObj = @Json.Serialize(pageObj);
|
|
$(function () {
|
|
var PostData = { ValueDate: pageObj.valueDate };
|
|
@Html.Raw(JqGridSimple.OutGrid("/supervise_report/superviseClientCashReportQuery", isMultiSelect: false));
|
|
|
|
grid.jqGrid('setGroupHeaders', {
|
|
useColSpanStyle: true,
|
|
groupHeaders: [
|
|
{ startColumnName: 'ToClientCredit', numberOfColumns: 2, titleText: '对手方可使用的广义授权信总额<br />(等于F + J)' },
|
|
{ startColumnName: 'ClientPositionCredit', numberOfColumns: 2, titleText: '对手方已使用的广义授信总额<br />(等于H + I)' },
|
|
{ startColumnName: 'ToCompanyCredit', numberOfColumns: 2, titleText: '子公司可使用的广义授信总额<br />(等于J + K)' },
|
|
{ startColumnName: 'CompanyPositionCredit', numberOfColumns: 2, titleText: '子公司已使用的广义授信总额<br />(等于L + M)' }
|
|
]
|
|
});
|
|
grid.setGridParam({
|
|
resizeStop: function (newWidth, index) {
|
|
$(".ui-jqgrid-hdiv table:first th").eq(index).css("width", newWidth + "px");
|
|
$(".frozen-div table:first th").eq(index).css("width", newWidth + "px");
|
|
$(".frozen-bdiv table:first td").eq(index).css("width", newWidth + "px");
|
|
}
|
|
});
|
|
});
|
|
</script>
|
|
}
|
|
<style>
|
|
.no-skin {
|
|
position: static !important;
|
|
}
|
|
</style>
|
|
|
|
<div class="searchdiv">
|
|
@Html.SearchDate("ValueDate", "日期")
|
|
@Html.MyAceDropdownInput("DataMode", "报送类型", new List<SelectListItem>() { new SelectListItem() { Text = "全量客户", Selected = true }, new SelectListItem() { Text = "有持仓" }, new SelectListItem() { Text = "有资金" } }, false)
|
|
@MyControls.SearchBtn()
|
|
@MyControls.Btn("导出", "exportToFile()")
|
|
</div>
|
|
|
|
@Html.Raw(JqGridSimple.OutTable()) |