暫無描述
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

seo_edit.htm 3.1KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. {include file="header.htm" /}
  2. <body class="bodystyle" style=" padding:0; overflow: hidden;">
  3. <div id="toolTipLayer" style="position: absolute; z-index: 9999; display: none; visibility: visible; left: 95px; top: 573px;"></div>
  4. <div id="append_parent"></div>
  5. <div id="ajaxwaitid"></div>
  6. <div class="page">
  7. <form class="form-horizontal" id="editpostForm">
  8. <div class="ncap-form-default">
  9. <dl class="row">
  10. <dt class="tit">
  11. <label for="seo_title">SEO标题</label>
  12. </dt>
  13. <dd class="opt">
  14. <input type="text" name="seo_info[index][seo_title]" id="seo_title" value="{$data['seo_info']['index']['seo_title']|default='问答中心'}" class="input-txt">
  15. <p class="notic">标签调用方法:{literal}{$eyou.field.seo_title}{/literal}</p>
  16. </dd>
  17. </dl>
  18. <dl class="row">
  19. <dt class="tit">
  20. <label for="seo_keywords">SEO关键词</label>
  21. </dt>
  22. <dd class="opt">
  23. <textarea rows="5" cols="60" name="seo_info[index][seo_keywords]" id="seo_keywords" style="height: 40px;">{$data['seo_info']['index']['seo_keywords']|default=''}</textarea>
  24. <p class="notic">标签调用方法:{literal}{$eyou.field.seo_keywords}{/literal}</p>
  25. </dd>
  26. </dl>
  27. <dl class="row">
  28. <dt class="tit">
  29. <label for="seo_description">SEO描述</label>
  30. </dt>
  31. <dd class="opt">
  32. <textarea rows="5" cols="60" name="seo_info[index][seo_description]" id="seo_description" style="height: 60px;">{$data['seo_info']['index']['seo_description']|default=''}</textarea>
  33. <p class="notic">标签调用方法:{literal}{$eyou.field.seo_description}{/literal}</p>
  34. </dd>
  35. </dl>
  36. <div class="bot">
  37. <a href="JavaScript:void(0);" onclick="checkForm();" class="ncap-btn-big ncap-btn-green">确认提交</a>
  38. </div>
  39. </div>
  40. </form>
  41. </div>
  42. <script type="text/javascript">
  43. var parentObj = parent.layer.getFrameIndex(window.name); //先得到当前iframe层的索引
  44. // 判断输入框是否为空
  45. function checkForm() {
  46. layer_loading('正在处理');
  47. $.ajax({
  48. url : "{:weapp_url('Ask/Ask/seo_edit', ['_ajax'=>1])}",
  49. data: $('#editpostForm').serialize(),
  50. type: 'POST',
  51. success:function(res) {
  52. layer.closeAll();
  53. if (1 == res.code) {
  54. parent.layer.msg(res.msg, {shade: 0.3, time: 1000}, function(){
  55. parent.window.location.reload();
  56. parent.layer.close(parentObj);
  57. });
  58. } else {
  59. showErrorMsg(res.msg);
  60. }
  61. },
  62. error: function(e) {
  63. layer.closeAll();
  64. showErrorMsg(ey_unknown_error);
  65. }
  66. });
  67. }
  68. </script>
  69. {include file="footer.htm" /}