Index.cshtml 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. @model EMIS.ViewModel.RetakeManage.RetakeConditionPageView
  2. @using Bowin.Web.Controls.Mvc;
  3. @using EMIS.Web.Controls;
  4. @{
  5. ViewBag.Title = "List";
  6. }
  7. @section scripts{
  8. <script src="~/Scripts/Business/RetakeManage/RetakeCondition.js" type="text/javascript"></script>
  9. }
  10. <div class="easyui-panel" data-options="border:false,fit:true" style="position: relative;">
  11. @using (Ajax.BeginForm(new AjaxOptions
  12. {
  13. OnSuccess = "EMISFunction.FormSuccess",
  14. OnBegin = "EMISFunction.FormSubmit",
  15. OnComplete = "EMISFunction.FormComplete"
  16. }))
  17. {
  18. @Html.Position()
  19. <div class="p_title">
  20. <div style="float: left; margin-left: 10px; line-height: 30px; font-size: 12px;">
  21. 条件限定信息</div>
  22. <div style="margin-right: 10px; line-height: 30px; font-size: 12px;">@Html.ContextMenuBar("Index")</div>
  23. </div>
  24. <div class="search_list" style="min-width:0px">
  25. <table cellpadding="0" cellspacing="1" style="width: 100%;">
  26. <tr style="border:1px solid #D6D6D6; height:30px;">
  27. <th style=" background-color:#e8e8e8; border:1px solid #D6D6D6; text-align:center; width: 150px;">
  28. </th>
  29. <td style="border-left:1px solid #D6D6D6; border-top:1px solid #D6D6D6; border-bottom:1px solid #D6D6D6; text-align:left; width:100px;">
  30. @Html.TextBoxFor(x => x.MinNoPassCount, new { style = "width: 30px;" })
  31. </td>
  32. <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;">
  33. &le;
  34. @Html.TextBoxFor(x => x.NoPassConditionTitle, new TextBoxOptions() { IsEnabled = false })
  35. &le;
  36. </td>
  37. <td style="border-right:1px solid #D6D6D6; border-top:1px solid #D6D6D6; border-bottom:1px solid #D6D6D6; text-align:left;">
  38. @Html.TextBoxFor(x => x.MaxNoPassCount, new { style = "width: 30px;" })
  39. </td>
  40. </tr>
  41. </table>
  42. </div>
  43. }
  44. </div>