SetTime.cshtml 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. @model EMIS.ViewModel.ExaminationManage.TimeSegmentView
  2. @using EMIS.Web.Controls;
  3. @using Bowin.Web.Controls.Mvc;
  4. @{
  5. ViewBag.Title = "SetTime";
  6. }
  7. @section scripts{
  8. <script src="~/Scripts/Business/ExaminationManage/SetTime.js" type="text/javascript"></script>
  9. <script type="text/javascript">
  10. var nonSelect = "@DropdownList.SELECT_ALL";
  11. </script>
  12. }
  13. <div class="easyui-panel" data-options="border:false,fit:true" style="position: relative;">
  14. <div class="p_title">
  15. <div style="float: left; margin-left: 10px; line-height: 30px; font-size: 12px;">
  16. 考试时间</div>
  17. @*<div style="margin-right: 10px; line-height: 30px; font-size: 12px;">
  18. <div class="current_navbar toolbar">
  19. <div class="func_info">
  20. <a class="easyui-linkbutton" href="javascript:SetTime_Confirm()" data-options="iconCls:'icon-ok',plain:'true'"
  21. onfocus="this.blur()">选中</a>
  22. </div>
  23. </div>
  24. </div>*@
  25. @Html.ContextMenuBar("ExamTime_Confirm")
  26. </div>
  27. <div class="search_list">
  28. <table cellpadding="0" cellspacing="0">
  29. <tr>
  30. <td>@Html.LabelFor(x => x.ExaminationDate):
  31. </td>
  32. <td>@Html.TextBoxFor((x => x.ExaminationDate), new TextBoxOptions { TextBoxType = TextBoxType.Date, IsRequired = true })
  33. </td>
  34. <td><label></label>
  35. </td>
  36. <td>&nbsp;
  37. </td>
  38. </tr>
  39. <tr>
  40. <td>@Html.LabelFor(x => x.StartTime):
  41. </td>
  42. <td>@Html.TextBoxFor(x => x.StartTime, new TextBoxOptions { TextBoxType = TextBoxType.Time, IsRequired = true })
  43. </td>
  44. <td>@Html.LabelFor(x => x.EndTime):
  45. </td>
  46. <td>@Html.TextBoxFor(x => x.EndTime, new TextBoxOptions { TextBoxType = TextBoxType.Time, IsRequired = true })
  47. </td>
  48. </tr>
  49. </table>
  50. </div>
  51. </div>