1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- @model EMIS.ViewModel.RetakeManage.RetakeConditionPageView
- @using Bowin.Web.Controls.Mvc;
- @using EMIS.Web.Controls;
- @{
- ViewBag.Title = "List";
- }
- @section scripts{
- <script src="~/Scripts/Business/RetakeManage/RetakeCondition.js" type="text/javascript"></script>
- }
- <div class="easyui-panel" data-options="border:false,fit:true" style="position: relative;">
- @using (Ajax.BeginForm(new AjaxOptions
- {
- OnSuccess = "EMISFunction.FormSuccess",
- OnBegin = "EMISFunction.FormSubmit",
- OnComplete = "EMISFunction.FormComplete"
- }))
- {
- @Html.Position()
- <div class="p_title">
- <div style="float: left; margin-left: 10px; line-height: 30px; font-size: 12px;">
- 条件限定信息</div>
- <div style="margin-right: 10px; line-height: 30px; font-size: 12px;">@Html.ContextMenuBar("Index")</div>
- </div>
- <div class="search_list" style="min-width:0px">
- <table cellpadding="0" cellspacing="1" style="width: 100%;">
- <tr style="border:1px solid #D6D6D6; height:30px;">
- <th style=" background-color:#e8e8e8; border:1px solid #D6D6D6; text-align:center; width: 150px;">
- </th>
- <td style="border-left:1px solid #D6D6D6; border-top:1px solid #D6D6D6; border-bottom:1px solid #D6D6D6; text-align:left; width:100px;">
- @Html.TextBoxFor(x => x.MinNoPassCount, new { style = "width: 30px;" })
- </td>
- <td style="border-top:1px solid #D6D6D6; border-bottom:1px solid #D6D6D6; text-align:left; margin-left: 0px; margin-right: 0px; width: 230px; white-space: nowrap; color: red; font-weight: bold;">
- ≤
- @Html.TextBoxFor(x => x.NoPassConditionTitle, new TextBoxOptions() { IsEnabled = false })
- ≤
- </td>
- <td style="border-right:1px solid #D6D6D6; border-top:1px solid #D6D6D6; border-bottom:1px solid #D6D6D6; text-align:left;">
- @Html.TextBoxFor(x => x.MaxNoPassCount, new { style = "width: 30px;" })
- </td>
- </tr>
- </table>
- </div>
- }
- </div>
|