40 lines
1.3 KiB
Plaintext
40 lines
1.3 KiB
Plaintext
|
|
@{
|
|
ViewBag.Title = "预付金计算阈值";
|
|
Layout = "~/Views/Shared/_MainLayout.cshtml";
|
|
var pageObj = new
|
|
{
|
|
};
|
|
}
|
|
@section JS{
|
|
<script>
|
|
var page = @Json.Serialize(pageObj);
|
|
</script>
|
|
|
|
<script src="~/Scripts/app/MarginCalculation/marginCalculationThreshold.js"></script>
|
|
<script type="text/javascript">
|
|
var ctrl = new marginRateListCtrl();
|
|
</script>
|
|
}
|
|
<div class="searchdiv">
|
|
<div class="first-wrap-gtja">
|
|
@Html.MyAceDropdownInput("ClientId", "客户名称", ClientDataModel.GetAllClient(), true, true, null, false)
|
|
<label>预付金计算阈值范围</label>
|
|
<input type="text" name="ThresholdStart" id="ThresholdStart" />
|
|
<label>至</label>
|
|
<input type="text" name="ThresholdEnd" id="ThresholdEnd" />
|
|
@*<div class="search-group">
|
|
<span class="search-label">预付金计算阈值范围</span>
|
|
<input class="search-input" id="ThresholdStart" name="ThresholdStart" type="text">至 <input class="search-input" id="ThresholdEnd" name="ThresholdEnd" type="text">
|
|
</div>*@
|
|
</div>
|
|
</div>
|
|
<div class="searchdiv">
|
|
@MyControls.SearchBtn()
|
|
@MyControls.Btn("新增", "MarginCalculationThresholdAdd()")
|
|
|
|
</div>
|
|
<table id='listGrid' class='table-jqgrid' cellpadding='0' cellspacing='0'></table>
|
|
<div id='pagerGrid'></div>
|
|
|