69 lines
2.1 KiB
Plaintext
69 lines
2.1 KiB
Plaintext
@{
|
|
ViewBag.Title = "互换预付金率维护";
|
|
Layout = "~/Views/Shared/_MainLayout.cshtml";
|
|
var pageObj = new
|
|
{
|
|
canEdit = CurUser.基础参数管理.互换预付金率修改,
|
|
curTabIndex = Context.Request.Query["tab"].ToString().TrimToNull() ?? "1"
|
|
};
|
|
ViewData["tab-active-" + pageObj.curTabIndex] = "active";
|
|
}
|
|
@section CSS{
|
|
<style>
|
|
.meetDeadline {
|
|
background-color: orange !important;
|
|
}
|
|
|
|
.passDeadline {
|
|
background-color: lightgray !important;
|
|
}
|
|
|
|
.ui-jqgrid {
|
|
margin: 0;
|
|
}
|
|
</style>
|
|
<link rel="stylesheet" href="~/Style/Css/superviseReport/MonthlyReport.css" />
|
|
}
|
|
@section JS{
|
|
<script>
|
|
var page = @Json.Serialize(pageObj);
|
|
</script>
|
|
<script src="~/Scripts/app/marginRate/marginRateSwapList.js"></script>
|
|
<script type="text/javascript">
|
|
//var ctrl = new marginRateListCtrl();
|
|
</script>
|
|
}
|
|
<div class="searchdiv">
|
|
@Html.MyAceDropdownInput("ClientId", "客户名称", ClientDataModel.GetAllClient(), true, true, null, false)
|
|
@MyControls.SearchBtn()
|
|
@if (CurUser.基础参数管理.互换预付金率修改)
|
|
{
|
|
@MyControls.Btn("新增", "MarginRateAdd()")
|
|
@MyControls.Btn("导入", "importFile()")
|
|
}
|
|
</div>
|
|
|
|
<div class="tabbable">
|
|
<ul class="nav nav-tabs nav-main" id="myTab">
|
|
<li class="nav-item">
|
|
<a class="nav-link @(ViewData["tab-active-1"])" data-toggle="tab" href="#jqgridDiv1" title="互换预付金">互换预付金</a>
|
|
</li>
|
|
</ul>
|
|
<div class="tab-content">
|
|
<div id="jqgridDiv1" class="tab-pane @(ViewData["tab-active-1"])">
|
|
<table id='listGrid1' class='scroll' cellpadding='0' cellspacing='0'></table><div id='pagerGrid1'></div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
@await Html.PartialAsync("/Views/Common/_importFiles.cshtml", new ImportFileModel()
|
|
{
|
|
Title = "上传互换预付金率",
|
|
Accept = ".*",
|
|
Buttons = new Dictionary<string, BtnReq>()
|
|
{
|
|
["上传"] = new BtnReq() { OnClick = "uploadMarginRate()" },
|
|
["下载模板"] = new BtnReq() { OnClick = "downTemplate()" },
|
|
},
|
|
})
|