123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- @model EMIS.ViewModel.CerificateView
- @using EMIS.Web.Controls;
- @using EMIS.Entities;
- @using Bowin.Web.Controls.Mvc;
- @{
- ViewBag.Title = "Edit";
- }
- @section scripts{
- <script src="~/Scripts/Business/ExamManage/ExaminationBatchList.js" type="text/javascript"></script>
- <script 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;">
- @if (Request.QueryString["Type"] != "1")//控制列表进入、屏蔽按钮权限
- {
- @Html.ContextMenuBar("Edit")
- }
- </div>
- </div>
- <div class="search_list">
- @Html.HiddenFor(x => x.CertisfierDistributeID)
- <table cellpadding="0" cellspacing="0" id="Campustable">
- <tr>
- <td style="width: 150px">
- @Html.LabelFor(x => x.ContactPerson):
- </td>
- <td>
- @(Model.ContactPerson)
- </td>
- </tr>
- <tr>
- <td style="width: 150px">
- @Html.LabelFor(x => x.ContactNo):
- </td>
- <td>
- @(Model.ContactNo)
- </td>
- </tr>
- <tr>
- <td style="width: 150px">
- @Html.LabelFor(x => x.Address):
- </td>
- <td>
- @(Model.Address)
- </td>
- </tr>
- <tr>
- <td style="width: 150px">
- @Html.LabelFor(x => x.ContactIDNo):
- </td>
- <td>
- @(Model.ContactIDNo)
- </td>
- </tr>
- </table>
- </div>
- }
- </div>
|