TipEdit.cshtml 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. @model EMIS.Entities.CF_Parameter
  2. @using Bowin.Web.Controls.Mvc;
  3. @using EMIS.Entities;
  4. @using EMIS.Web.Controls;
  5. @{
  6. ViewBag.Title = "TypeList";
  7. }
  8. <div class="easyui-panel" data-options="border:false,fit:true" style="position: relative;">
  9. @Html.Position()
  10. @using (Ajax.BeginForm(new AjaxOptions
  11. {
  12. OnSuccess = "EMISFunction.FormSuccess",
  13. OnBegin = "EMISFunction.FormSubmit",
  14. OnComplete = "EMISFunction.FormComplete"
  15. }))
  16. {
  17. <div class="p_title">
  18. <div style="float: left; margin-left: 10px; line-height: 30px; font-size: 12px;">
  19. </div>
  20. <div style="margin-right: 10px; line-height: 30px; font-size: 12px;">@Html.ContextMenuBar("Edit")</div>
  21. </div>
  22. <div class="search_list">
  23. <table cellpadding="0" cellspacing="0" id="departmenttable">
  24. <tr>
  25. <td style="width:150px">
  26. <label>登录注意事项:</label>
  27. </td>
  28. <td colspan="3">@Html.RichTextFor(x => x.Value, new RichTextOptions { Width = 700, Height = 520 })
  29. </td>
  30. </tr>
  31. </table>
  32. </div>
  33. }
  34. </div>
  35. @section scripts{
  36. <script type="text/javascript">
  37. function Save() {
  38. $(document.forms[0]).submit();
  39. }
  40. </script>
  41. }