32 lines
911 B
Plaintext
32 lines
911 B
Plaintext
|
|
@{
|
|
ViewBag.Title = "结算报告配置";
|
|
Layout = "~/Views/Shared/_MainLayout.cshtml";
|
|
var pageObj = new
|
|
{
|
|
};
|
|
}
|
|
@section JS{
|
|
<script>
|
|
var page = @Json.Serialize(pageObj);
|
|
</script>
|
|
|
|
<script src="~/Scripts/app/client/tradeMarketReportConfigure.js"></script>
|
|
<script type="text/javascript">
|
|
var ctrl = new TradeMarketReportConfigureListCtrl();
|
|
</script>
|
|
}
|
|
<div class="searchdiv">
|
|
<div class="first-wrap-gtja">
|
|
@Html.MyAceDropdownInput("ClientId", "适用客户", ClientDataModel.GetAllClient(), true, true, null, false)
|
|
</div>
|
|
</div>
|
|
<div class="searchdiv">
|
|
@MyControls.SearchBtn()
|
|
@MyControls.Btn("新增", "TradeMarketReportConfigureAdd()")
|
|
@MyControls.Btn("导入", "importTradeMarketReportConfigure()")
|
|
</div>
|
|
<table id='listGrid' class='table-jqgrid' cellpadding='0' cellspacing='0'></table>
|
|
<div id='pagerGrid'></div>
|
|
|