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

47 lines
1.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/superviseClientCashQuery"));
});
</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()
<label style="float:right">
@MyControls.Btn("批量确认", "BatchSuperviseClientCash('update')")
@MyControls.Btn("批量删除", "BatchSuperviseClientCash('delete')")
</label>
@*@MyControls.Btn("导出", "exportToFile()")*@
</div>
@Html.Raw(JqGridSimple.OutTable())