ApprovalHandle.cshtml 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. @using EMIS.Web.Controls;
  2. @using Bowin.Web.Controls.Mvc;
  3. @{
  4. ViewBag.Title = "Edit";
  5. List<DropdownListItem> listAction = ViewData["listAction"] as List<DropdownListItem>;
  6. string teachersOrderIDs = ViewData["teachersOrderIDs"] as string;
  7. }
  8. @section scripts{
  9. <script src="~/Scripts/Business/TeachingMaterial/TeachersOrderExamineEdit.js" type="text/javascript"></script>
  10. }
  11. @using (Ajax.BeginForm(new AjaxOptions { Url = "/TeachersOrderExamine/AuditProcess", OnSuccess = "EMISFunction.FormSuccess", OnBegin = "EMISFunction.FormSubmit", OnComplete = "EMISFunction.FormComplete" }))
  12. {
  13. <div class="p_title">
  14. @* <div style="float: left; margin-left: 10px; line-height: 30px; font-size: 12px;">
  15. 征订审核信息</div>*@
  16. <div style="margin-right: 10px; line-height: 30px; font-size: 12px;">@Html.ContextMenuBar("Edit")</div>
  17. </div>
  18. <div class="search_list">
  19. @Html.Hidden("hid_teachersOrderIDs", teachersOrderIDs)
  20. <table cellpadding="0" cellspacing="0">
  21. <tr>
  22. <td style="padding: 0px 0px 0px 10px;">
  23. @Html.Label("处理动作"):
  24. </td>
  25. <td>@Html.DropdownList(new DropdownListOptions { BindType = DropdownListBindType.None, ID = "ddlAction", Name = "ddlAction", ItemList = listAction,
  26. SelectedValue = listAction.FirstOrDefault(x => x.Text == "同意").Value
  27. })
  28. </td>
  29. </tr>
  30. <tr>
  31. <td style="padding: 10px 0px 0px 10px;">@Html.Label("处理意见"):
  32. </td>
  33. <td style="padding: 10px 0px 0px 0px;">@Html.TextArea("txtOpinioncomment", "", 5, 30, new { })
  34. </td>
  35. </tr>
  36. </table>
  37. </div>
  38. }