50 lines
1.4 KiB
Plaintext
50 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/cj_positionInfo.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/supervisePositionQuery"));
|
|
});
|
|
</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>
|
|
@MyControls.SearchBtn()
|
|
|
|
<label style="float:right">
|
|
@MyControls.Btn("批量确认", "BatchSupervisePosition('update')")
|
|
@MyControls.Btn("批量删除", "BatchSupervisePosition('delete')")
|
|
</label>
|
|
</div>
|
|
@Html.Raw(JqGridSimple.OutTable()) |