12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- {include file="header.htm" /}
-
- <body class="bodystyle" style=" padding:0; overflow: hidden;">
- <div id="toolTipLayer" style="position: absolute; z-index: 9999; display: none; visibility: visible; left: 95px; top: 573px;"></div>
- <div id="append_parent"></div>
- <div id="ajaxwaitid"></div>
- <div class="page">
- <form class="form-horizontal" id="editpostForm">
- <div class="ncap-form-default">
- <dl class="row">
- <dt class="tit">
- <label for="seo_title">SEO标题</label>
- </dt>
- <dd class="opt">
- <input type="text" name="seo_info[index][seo_title]" id="seo_title" value="{$data['seo_info']['index']['seo_title']|default='问答中心'}" class="input-txt">
- <p class="notic">标签调用方法:{literal}{$eyou.field.seo_title}{/literal}</p>
- </dd>
- </dl>
-
- <dl class="row">
- <dt class="tit">
- <label for="seo_keywords">SEO关键词</label>
- </dt>
- <dd class="opt">
- <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>
- <p class="notic">标签调用方法:{literal}{$eyou.field.seo_keywords}{/literal}</p>
- </dd>
- </dl>
-
- <dl class="row">
- <dt class="tit">
- <label for="seo_description">SEO描述</label>
- </dt>
- <dd class="opt">
- <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>
- <p class="notic">标签调用方法:{literal}{$eyou.field.seo_description}{/literal}</p>
- </dd>
- </dl>
-
- <div class="bot">
- <a href="JavaScript:void(0);" onclick="checkForm();" class="ncap-btn-big ncap-btn-green">确认提交</a>
- </div>
- </div>
- </form>
- </div>
-
- <script type="text/javascript">
- var parentObj = parent.layer.getFrameIndex(window.name); //先得到当前iframe层的索引
-
- // 判断输入框是否为空
- function checkForm() {
- layer_loading('正在处理');
- $.ajax({
- url : "{:weapp_url('Ask/Ask/seo_edit', ['_ajax'=>1])}",
- data: $('#editpostForm').serialize(),
- type: 'POST',
- success:function(res) {
- layer.closeAll();
- if (1 == res.code) {
- parent.layer.msg(res.msg, {shade: 0.3, time: 1000}, function(){
- parent.window.location.reload();
- parent.layer.close(parentObj);
- });
- } else {
- showErrorMsg(res.msg);
- }
- },
- error: function(e) {
- layer.closeAll();
- showErrorMsg(ey_unknown_error);
- }
- });
- }
- </script>
-
- {include file="footer.htm" /}
|