123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- @model EMIS.ViewModel.ExaminationManage.TimeSegmentView
- @using EMIS.Web.Controls;
- @using Bowin.Web.Controls.Mvc;
- @{
- ViewBag.Title = "SetTime";
- }
- @section scripts{
- <script src="~/Scripts/Business/ExaminationManage/SetTime.js" type="text/javascript"></script>
- <script type="text/javascript">
- var nonSelect = "@DropdownList.SELECT_ALL";
- </script>
- }
- <div class="easyui-panel" data-options="border:false,fit:true" style="position: relative;">
- <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;">
- <div class="current_navbar toolbar">
- <div class="func_info">
- <a class="easyui-linkbutton" href="javascript:SetTime_Confirm()" data-options="iconCls:'icon-ok',plain:'true'"
- onfocus="this.blur()">选中</a>
- </div>
- </div>
- </div>*@
- @Html.ContextMenuBar("ExamTime_Confirm")
- </div>
- <div class="search_list">
- <table cellpadding="0" cellspacing="0">
- <tr>
- <td>@Html.LabelFor(x => x.ExaminationDate):
- </td>
- <td>@Html.TextBoxFor((x => x.ExaminationDate), new TextBoxOptions { TextBoxType = TextBoxType.Date, IsRequired = true })
- </td>
- <td><label></label>
- </td>
- <td>
- </td>
- </tr>
- <tr>
- <td>@Html.LabelFor(x => x.StartTime):
- </td>
- <td>@Html.TextBoxFor(x => x.StartTime, new TextBoxOptions { TextBoxType = TextBoxType.Time, IsRequired = true })
- </td>
- <td>@Html.LabelFor(x => x.EndTime):
- </td>
- <td>@Html.TextBoxFor(x => x.EndTime, new TextBoxOptions { TextBoxType = TextBoxType.Time, IsRequired = true })
- </td>
- </tr>
- </table>
- </div>
- </div>
|