44 lines
1.2 KiB
Plaintext
44 lines
1.2 KiB
Plaintext
@{
|
|
var DataSources = new List<string> { "聚源", "人工" };
|
|
ViewBag.Title = "债券期间付息管理";
|
|
Layout = "~/Views/Shared/_InfoLayout.cshtml";
|
|
}
|
|
@section CSS {
|
|
<style>
|
|
.container {
|
|
width: 100%;
|
|
}
|
|
|
|
@@media (min-width: 1400px) {
|
|
.container {
|
|
max-width: 1400px;
|
|
}
|
|
}
|
|
|
|
.card-import-result .close {
|
|
display: none;
|
|
}
|
|
</style>
|
|
}
|
|
|
|
@section JS {
|
|
<script>
|
|
var curdate = "@valuedateBLL.ValueDate.ToString("yyyy-MM-dd")";
|
|
</script>
|
|
<script src="~/Scripts/app/bondPayment/bondpaymentList.js?v=@(HtmlUtil.JsVersion)"></script>
|
|
}
|
|
|
|
<div style="display:none;width:350px;" id="errormessage"></div>
|
|
|
|
<div class="searchdiv">
|
|
@Html.SearchDateRange("ValueDate", "支付日期")
|
|
@Html.MyAceDropdownInput2("DataSource", "数据来源", GlobalData.GetSelectItems(DataSources))
|
|
@Html.MyAceDropdownInput2("MarketName", "市场", MarketController.GetAllmarketName())
|
|
@Html.ShortInput("UnderlyingCode", "标的代码")
|
|
@MyControls.SearchBtn()
|
|
@MyControls.Btn("导出", "downloadExcel()")
|
|
</div>
|
|
|
|
@Html.Raw(JqGridSimple.OutTable())
|
|
|