View.cshtml 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. @model EMIS.ViewModel.CerificateView
  2. @using EMIS.Web.Controls;
  3. @using EMIS.Entities;
  4. @using Bowin.Web.Controls.Mvc;
  5. @{
  6. ViewBag.Title = "Edit";
  7. }
  8. @section scripts{
  9. <script src="~/Scripts/Business/ExamManage/ExaminationBatchList.js" type="text/javascript"></script>
  10. <script type="text/javascript">
  11. </script>
  12. }
  13. <div class="easyui-panel" data-options="border:false,fit:true" style="position: relative;">
  14. @using (Ajax.BeginForm(new AjaxOptions
  15. {
  16. OnSuccess = "EMISFunction.FormSuccess",
  17. OnBegin = "EMISFunction.FormSubmit",
  18. OnComplete = "EMISFunction.FormComplete"
  19. }))
  20. {
  21. <div class="p_title">
  22. <div style="float: left; margin-left: 10px; line-height: 30px; font-size: 12px;">
  23. </div>
  24. <div style="margin-right: 10px; line-height: 30px; font-size: 12px;">
  25. @if (Request.QueryString["Type"] != "1")//控制列表进入、屏蔽按钮权限
  26. {
  27. @Html.ContextMenuBar("Edit")
  28. }
  29. </div>
  30. </div>
  31. <div class="search_list">
  32. @Html.HiddenFor(x => x.CertisfierDistributeID)
  33. <table cellpadding="0" cellspacing="0" id="Campustable">
  34. <tr>
  35. <td style="width: 150px">
  36. @Html.LabelFor(x => x.ContactPerson):
  37. </td>
  38. <td>
  39. @(Model.ContactPerson)
  40. </td>
  41. </tr>
  42. <tr>
  43. <td style="width: 150px">
  44. @Html.LabelFor(x => x.ContactNo):
  45. </td>
  46. <td>
  47. @(Model.ContactNo)
  48. </td>
  49. </tr>
  50. <tr>
  51. <td style="width: 150px">
  52. @Html.LabelFor(x => x.Address):
  53. </td>
  54. <td>
  55. @(Model.Address)
  56. </td>
  57. </tr>
  58. <tr>
  59. <td style="width: 150px">
  60. @Html.LabelFor(x => x.ContactIDNo):
  61. </td>
  62. <td>
  63. @(Model.ContactIDNo)
  64. </td>
  65. </tr>
  66. </table>
  67. </div>
  68. }
  69. </div>