1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- @model EMIS.ViewModel.RetakeManage.RetakeDivideIntoClassesView
- @using EMIS.Web.Controls;
- @using Bowin.Web.Controls.Mvc;
- @{
- ViewBag.Title = "DivideIntoClassesEdit";
- }
- @section scripts{
- <script src="~/Scripts/Business/RetakeManage/General/DivideIntoClassesEdit.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"
- }))
- {
- <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("Separate")</div>
- </div>
- <div class="search_list">
- @Html.HiddenFor(x => x.RetakePlanID)
- <input type="hidden" id="hid_StudentTotalNum" name="hid_StudentTotalNum" value="0" />
- <input type="hidden" id="hid_StudentNum" name="hid_StudentNum" value="0" />
- <input type="hidden" id="hid_GroupNum" name="hid_GroupNum" value="0" />
- <table cellpadding="0" cellspacing="0" id="divideIntoClassesEdit">
- <tr>
- <td>
- @Html.LabelFor(x => x.ClassName):
- </td>
- <td colspan="3">
- @Html.TextBoxFor(x => x.ClassName, new TextBoxOptions()
- {
- IsEnabled = false
- }, new Dictionary<string, string> { { "style", "width:85%;" } })
- </td>
- </tr>
- <tr>
- <td>
- @Html.LabelFor(x => x.StudentTotalNum):
- </td>
- <td colspan="3">
- @Html.TextBoxFor(x => x.StudentTotalNum, new TextBoxOptions { IsEnabled = false })
- </td>
- </tr>
- <tr>
- <td>
- <label>分班方式:</label>
- </td>
- <td>
- @Html.CheckBoxFor(x => x.IsGroup)
- <span style="color: red;">
- 任务班数
- </span>
- @Html.CheckBoxFor(x => x.IsAverageStudent)
- <span style="color: red;">
- 平均人数
- </span>
- </td>
- <td colspan="2" style="color: red;">
- * (请选择分班方式)
- </td>
- </tr>
- <tr>
- <td>
- @Html.LabelFor(x => x.GroupNum):
- </td>
- <td>
- @Html.TextBoxFor(x => x.GroupNum)
- </td>
- <td>
- @Html.LabelFor(x => x.StudentNum):
- </td>
- <td>
- @Html.TextBoxFor(x => x.StudentNum)
- </td>
- </tr>
- </table>
- </div>
- }
- </div>
|