123456789101112131415161718192021222324252627282930313233343536373839 |
- @using EMIS.Web.Controls;
- @using Bowin.Web.Controls.Mvc;
- @{
- ViewBag.Title = "Edit";
- List<DropdownListItem> listAction = ViewData["listAction"] as List<DropdownListItem>;
- string teachersOrderIDs = ViewData["teachersOrderIDs"] as string;
- }
- @section scripts{
- <script src="~/Scripts/Business/TeachingMaterial/TeachersOrderExamineEdit.js" type="text/javascript"></script>
- }
- @using (Ajax.BeginForm(new AjaxOptions { Url = "/TeachersOrderExamine/AuditProcess", 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("Edit")</div>
- </div>
- <div class="search_list">
- @Html.Hidden("hid_teachersOrderIDs", teachersOrderIDs)
- <table cellpadding="0" cellspacing="0">
- <tr>
- <td style="padding: 0px 0px 0px 10px;">
- @Html.Label("处理动作"):
- </td>
- <td>@Html.DropdownList(new DropdownListOptions { BindType = DropdownListBindType.None, ID = "ddlAction", Name = "ddlAction", ItemList = listAction,
- SelectedValue = listAction.FirstOrDefault(x => x.Text == "同意").Value
- })
- </td>
- </tr>
- <tr>
- <td style="padding: 10px 0px 0px 10px;">@Html.Label("处理意见"):
- </td>
- <td style="padding: 10px 0px 0px 0px;">@Html.TextArea("txtOpinioncomment", "", 5, 30, new { })
- </td>
- </tr>
- </table>
- </div>
- }
|