42 lines
1.0 KiB
Plaintext
42 lines
1.0 KiB
Plaintext
@{
|
|
ViewBag.Title = "资金流动性预测";
|
|
Layout = "~/Views/Shared/_MainLayout.cshtml";
|
|
var pageObj = new
|
|
{
|
|
startDate = valuedateBLL.ValueDate.ToString("yyyy-MM-dd"),
|
|
endDate = ViewBag.EndDate.ToString("yyyy-MM-dd"),
|
|
};
|
|
}
|
|
@section CSS{
|
|
<style>
|
|
#gbox_listGrid {
|
|
margin: 0
|
|
}
|
|
|
|
.lineCss {
|
|
background-color: black;
|
|
top: 0px;
|
|
width: 80%;
|
|
margin: auto;
|
|
height: 1px;
|
|
transform: rotate( 6deg );
|
|
}
|
|
</style>
|
|
}
|
|
@section JS{
|
|
<script>
|
|
const pageObj = @Json.Serialize(pageObj);
|
|
</script>
|
|
<script src="~/Scripts/app/tradeHelper.js?v=@HtmlUtil.JsVersion"></script>
|
|
<script src="~/Scripts/app/riskMonitor/flowRiskMonitor.js?v=@HtmlUtil.JsVersion"></script>
|
|
}
|
|
|
|
<div class="searchdiv">
|
|
@Html.SearchDate("End", "截止日期")
|
|
@MyControls.SearchBtn()
|
|
<span id="total"></span>
|
|
</div>
|
|
<div id="extendInfo" class="yc-panel my-0 p-0">
|
|
@Html.Raw(JqGridSimple.OutTable())
|
|
</div>
|