Aucune description
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

smtp_tpl_edit.htm 3.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. {include file="public/layout" /}
  2. <body class="bodystyle" style="cursor: default; -moz-user-select: inherit; min-width:400px;">
  3. <div id="append_parent"></div>
  4. <div id="ajaxwaitid"></div>
  5. <div class="page" style="min-width: 400px;">
  6. <div class="fixed-bar">
  7. <div class="item-title">
  8. <div class="subject">
  9. <h3>邮件模板</h3>
  10. <h5></h5>
  11. </div>
  12. <ul class="tab-base nc-row">
  13. <li><a href="{:url("System/smtp_tpl")}" class="tab {eq name="$Request.action" value="smtp_tpl"}current{/eq}"><span>模板列表</span></a></li>
  14. {eq name="'System@smtp_edit'|is_check_access" value="1"}
  15. <li><a href="javascript:void(0);" class="tab {if condition="in_array($Request.action, array('smtp_tpl_edit'))"}current{/if}"><span>编辑模板</span></a></li>
  16. {/eq}
  17. </ul>
  18. </div>
  19. </div>
  20. <form class="form-horizontal" id="post_form" action="{:url('System/smtp_tpl_edit')}" method="post">
  21. <input type="hidden" name="tpl_id" value="{$row.tpl_id}">
  22. <div class="ncap-form-default">
  23. <dl class="row">
  24. <dt class="tit">
  25. <label for="tpl_title"><em>*</em>邮件标题</label>
  26. </dt>
  27. <dd class="opt">
  28. <input id="tpl_title" name="tpl_title" value="{$row.tpl_title}" class="input-txt" type="text"/>
  29. <p class="notic"></p>
  30. </dd>
  31. </dl>
  32. <!-- <dl class="row">
  33. <dt class="tit">
  34. <label for="tpl_content">发送邮件内容</label>
  35. </dt>
  36. <dd class="opt">
  37. <textarea class="span12 ckeditor" id="post_content" name="tpl_content" title="">{$row.tpl_content}</textarea>
  38. <p class="notic"> 发送模板邮件内容,请按照格式进行修改 </p>
  39. </dd>
  40. </dl> -->
  41. <div class="bot"><a href="JavaScript:void(0);" onclick="checkForm();" class="ncap-btn-big ncap-btn-green" id="submitBtn">确认提交</a></div>
  42. </div>
  43. </form>
  44. </div>
  45. <script type="text/javascript">
  46. // 判断输入框是否为空
  47. function checkForm(){
  48. if($.trim($('input[name=tpl_title]').val()) == ''){
  49. showErrorMsg('邮件标题不能为空!');
  50. $('input[name=tpl_title]').focus();
  51. return false;
  52. }
  53. layer_loading('正在处理');
  54. $.ajax({
  55. url: "{:url('System/smtp_tpl_edit', ['_ajax'=>1])}",
  56. type: 'POST',
  57. dataType: 'JSON',
  58. data: $('#post_form').serialize(),
  59. success: function(res){
  60. layer.closeAll();
  61. if (res.code == 1) {
  62. layer.msg(res.msg, {shade: 0.1, time: 1000}, function(){
  63. window.location.href = res.url;
  64. });
  65. } else {
  66. layer.alert(res.msg, {icon:5, title:false});
  67. }
  68. },
  69. error: function(e){
  70. layer.closeAll();
  71. layer.alert(e.responseText, {icon:5, title:false});
  72. }
  73. });
  74. return false;
  75. }
  76. </script>
  77. {include file="public/footer" /}