123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- @model EMIS.ViewModel.DQPSystem.GroupSOCDetailView
- @using EMIS.Web.Controls;
- @using Bowin.Web.Controls.Mvc;
- @{
- ViewBag.Title = "GroupAdd";
- }
- @section scripts{
- <script src="~/Scripts/Business/DQPSystem/GroupSOCDetail.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="margin-right: 10px; line-height: 30px; font-size: 12px;">@Html.ContextMenuBar("GroupAdd")</div>
- </div>
- <div class="search_list">
- @Html.HiddenFor(x => x.SOCDetailID)
- <table cellpadding="0" cellspacing="0" id="educationMissionClasstable">
- <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 colspan="3">
- @* @Html.RadioButtonFor(x => x.GroupWay, EMIS.ViewModel.DQPSystem.GroupWay.ByStudentNo)
- <span>按学号顺序分组</span>
- @Html.RadioButtonFor(x => x.GroupWay, EMIS.ViewModel.DQPSystem.GroupWay.ByRandom)
- <span>随机分组</span>
- @Html.RadioButtonFor(x => x.GroupWay, EMIS.ViewModel.DQPSystem.GroupWay.ByManual)
- <span>手动分组</span>*@
- @Html.CheckBoxFor(x => x.IsStudentNo)<span>按学号顺序分组</span> @Html.CheckBoxFor(x => x.IsRandom)<span>随机分组</span>
- @Html.CheckBoxFor(x => x.IsManual)<span>手动分组</span>
- </td>
- </tr>
- <tr>
- <td>@Html.LabelFor(x => x.StudentNum):
- </td>
- <td>@Html.TextBoxFor(x => x.StudentNum)@Html.CheckBoxFor(x => x.GroupByStudent)
- </td>
- <td>@Html.LabelFor(x => x.GroupNum):
- </td>
- <td>@Html.TextBoxFor(x => x.GroupNum)@Html.CheckBoxFor(x => x.GroupByGroup)
- </td>
- </tr>
- </table>
- </div>
- }
- </div>
|