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.

add.htm 30KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619
  1. {include file="public/layout" /}
  2. {eq name="$editor.editor_select" value="1"}
  3. {load href="__PUBLIC__/plugins/Ueditor/ueditor.config.js" /}
  4. {load href="__PUBLIC__/plugins/Ueditor/ueditor.all.min.js" /}
  5. {load href="__PUBLIC__/plugins/Ueditor/lang/zh-cn/zh-cn.js" /}
  6. {else/}
  7. {load href="__PUBLIC__/plugins/ckeditor/ckeditor.js" /}
  8. {/eq}
  9. <body class="bodysy-w">
  10. <div id="toolTipLayer" style="position: absolute; z-index: 9999; display: none; visibility: visible; left: 95px; top: 573px;"></div>
  11. <div id="append_parent"></div>
  12. <div id="ajaxwaitid"></div>
  13. <div id="geduan_div" class="h10"></div>
  14. <div id="page_div" class="page min-hg-c mb-20" style="min-width:auto;box-shadow:none;">
  15. <div class="fixed-bar">
  16. <div class="item-title" style="margin-bottom: 6px;">
  17. {include file="public/callback_page_1" /}<!-- 返回箭头 -->
  18. <a class="back_sz" href="javascript:void(0);" data-href="{:url('Custom/help',['channel'=>$channeltype])}" onclick="openHelpframe(this, '设置与帮助', '500px', '100%', 'r');" title="设置与帮助"><i class="iconfont e-shezhi-tongyong"></i></a>
  19. <div class="subject">
  20. <h3>发布文档</h3>
  21. <h5></h5>
  22. </div>
  23. <ul class="tab-base nc-row">
  24. <li><a href="javascript:void(0);" data-index='1' class="tab current"><span>基础内容</span></a></li>
  25. <li><a href="javascript:void(0);" data-index='2' class="tab"><span>SEO优化</span></a></li>
  26. <li><a href="javascript:void(0);" data-index='3' class="tab"><span>更多设置</span></a></li>
  27. <!-- #weapp_diy001_tab# -->
  28. <!-- #weapp_diy002_tab# -->
  29. <!-- #weapp_demontrate_li# -->
  30. <!-- #weapp_li# -->
  31. </ul>
  32. </div>
  33. </div>
  34. <form class="form-horizontal" id="post_form" action="{:url('Custom/add')}" method="post">
  35. <!-- 常规信息 -->
  36. <div class="ncap-form-default tab_div_1">
  37. <div class="layui-tab" style="margin-top: -20px;padding-bottom: 50px;">
  38. <ul class="layui-tab-title">
  39. <li class="layui-this">基础信息</li>
  40. <li>扩展信息</li>
  41. <li>其他信息</li>
  42. </ul>
  43. <div class="layui-tab-content">
  44. <div class="layui-tab-item layui-show">
  45. <dl class="row">
  46. <dt class="tit">
  47. <label for="title">文档类型</label>
  48. </dt>
  49. <dd class="opt">
  50. <select name="area_tag_id" id="">
  51. <option value="0">无</option>
  52. <option value="10000" {eq name="area_tag_id" value="10000"}selected{/eq}>伪山东</option>
  53. {foreach $product_area_data as $key=>$vo}
  54. <option value="{$vo.id}" {eq name="area_tag_id" value="{$vo.id}"}selected{/eq}> {$vo.name} </option>
  55. {/foreach}
  56. </select>
  57. </dd>
  58. </dl>
  59. <!--start--->
  60. <dl class="row {empty name="$global.web_citysite_open"} none {/empty} ">
  61. <dt class="tit">
  62. <label for="title">所属区域</label>
  63. </dt>
  64. <dd class="opt">
  65. <select name="province_id" id="province_id" onchange="set_city_list(0);">
  66. <option value="0">全国</option>
  67. {volist name=':get_site_province_list()' id='vo'}
  68. <option value="{$vo.id}" {eq name="$Request.param.province_id" value="$vo.id" } selected="true" {/eq}>{$vo.name}</option>
  69. {/volist}
  70. </select>
  71. <select name="city_id" id="city_id" class="none ml5" onchange="set_area_list(0);">
  72. <option value="">--请选择--</option>
  73. </select>
  74. <select name="area_id" id="area_id" class="none ml5">
  75. <option value="">--请选择--</option>
  76. </select>
  77. <span class="err"></span>
  78. </dd>
  79. </dl>
  80. <dl class="row">
  81. <dt class="tit">
  82. <label for="title"><em>*</em>文档标题</label>
  83. </dt>
  84. <dd class="opt">
  85. <input type="text" name="title" value="" id="title" class="input-txt" maxlength="200" {eq name="$channelRow.is_repeat_title" value="0"} oninput="check_title_repeat(this,0);" {/eq}>
  86. &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  87. 副标题:<input type="text" name="subtitle" value="" id="subtitle" class="w200">
  88. <span class="err"></span>
  89. &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;价格:<input type="text" name="users_price" value="0.00" id="users_price" class="w200">
  90. <span class="err"></span>
  91. </dd>
  92. </dl>
  93. <dl class="row">
  94. <dt class="tit">
  95. <label for="title"><em>*</em>栏目分类</label>
  96. </dt>
  97. <dd class="opt">
  98. <select name="typeid" id="typeid">
  99. <option value="0">请选择栏目…</option>
  100. {$arctype_html}
  101. </select>
  102. <span class="err"></span>
  103. <p class="notic">谨慎切换,自定义字段的内容会随着栏目切换而清空,在保存之前不受影响!</p>
  104. </dd>
  105. </dl>
  106. {notempty name='$global.web_stypeid_open'}
  107. <?php if((int)$topid !== 38){ ?>
  108. <dl class="row">
  109. <dt class="tit">
  110. <label for="stypeid">副栏目分类</label>
  111. </dt>
  112. <dd class="opt">
  113. <input type="hidden" name="stypeid" id="stypeid" value="" class="input-txt" onkeyup="this.value=this.value.replace(/[^\d\,]/g,'');" onpaste="this.value=this.value.replace(/[^\d\,]/g,'');">
  114. &nbsp;<a href="javascript:void(0);" data-channel="{$channeltype}"
  115. data-catid="{$catid}"
  116. onclick="select_stypeid(this);" class="ncap-btn ncap-btn-green">选择副栏目(只能选一个)</a>
  117. <span class="err"></span>
  118. <p class="notic">支持同频道模型的栏目ID</p>
  119. <div id="stypeid_txt" class="pt5"></div>
  120. </dd>
  121. </dl>
  122. <?php } ?>
  123. <dl class="row">
  124. <dt class="tit">
  125. <label for="title">关联产品</label>
  126. </dt>
  127. <dd class="opt">
  128. <select name="product_id" id="catchoose3">
  129. <option value="0">默认产品</option>
  130. {foreach $pro_list as $key=>$vo}
  131. <option value="{$vo.id}" {eq name="product_id" value="$vo.id"}selected{/eq}>{$vo.typename}</option>
  132. {/foreach}
  133. </select>
  134. </dd>
  135. </dl>
  136. {/notempty}
  137. <dl class="row">
  138. <dt class="tit">
  139. <label>文档属性</label>
  140. </dt>
  141. <dd class="opt">
  142. {volist name="archives_flags" id="vo"}
  143. <label><input type="checkbox" name="{$vo.flag_fieldname}" value="1">{$vo.flag_name}<!-- [{$vo.flag_attr}] --></label>&nbsp;
  144. {/volist}
  145. <span class="err"></span>
  146. <p class="notic">如需管理,请点击右上角设置与帮助按钮</p>
  147. </dd>
  148. </dl>
  149. <dl class="row none dl_jump">
  150. <dt class="tit">
  151. <label>跳转网址</label>
  152. </dt>
  153. <dd class="opt">
  154. <input type="text" value="" name="jumplinks" id="jumplinks" class="input-txt" placeholder="http://">
  155. <span class="err"></span>
  156. <p class="notic">请输入完整的URL网址(包含http或https),设置后访问该条信息将直接跳转到设置的网址</p>
  157. </dd>
  158. </dl>
  159. <dl class="row" style="z-index:2;">
  160. <dt class="tit">
  161. <label>文档标签</label>
  162. </dt>
  163. <dd class="opt">
  164. <input type="text" value="" name="tags" id="tags" class="input-txt" placeholder="多个标签之间以逗号隔开" autocomplete="off" oninput="get_common_tagindex_input(this);" onfocus="$('#often_tags').hide();" onkeyup="this.value=this.value.replace(/[\,]/g,',');" onpaste="this.value=this.value.replace(/[\,]/g,',')">&nbsp;
  165. <a href="javascript:void(0);" onclick="get_common_tagindex(this);">显示常用标签</a>&nbsp;<img id="tag_loading" src="__STATIC__/common/images/loading.gif" style="display: none;" />
  166. <div class="often_tags" id="often_tags" data-opt="add" style="display: none;"></div>
  167. <div class="often_tags" id="often_tags_input" style="display: none;"></div>
  168. <input type="hidden" id="tags_click_count">
  169. </dd>
  170. </dl>
  171. {if condition="!empty($channelfield_row['litpic']) AND 1 == $channelfield_row['litpic']['ifeditable']"}
  172. <dl class="row">
  173. <dt class="tit">
  174. <label>封面图片</label>
  175. </dt>
  176. <dd class="opt">
  177. <div class="input-file-show div_litpic_local">
  178. <span class="show">
  179. <a id="img_a" target="_blank" class="nyroModal" rel="gal" href="javascript:void(0);">
  180. <i id="img_i" class="fa fa-picture-o" onmouseover="" onmouseout="layer.close(layer_tips);"></i>
  181. </a>
  182. </span>
  183. <span class="type-file-box">
  184. <input type="text" id="litpic_local" name="litpic_local" value="" class="type-file-text" autocomplete="off">
  185. <input type="button" name="button" id="button1" value="选择上传..." class="type-file-button">
  186. <input class="type-file-file" onClick="GetUploadify(1,'','allimg','img_call_back')" size="30" hidefocus="true" nc_type="change_site_logo"
  187. title="点击前方预览图可查看大图,点击按钮选择文件并提交表单后上传生效">
  188. </span>
  189. </div>
  190. <input type="text" id="litpic_remote" name="litpic_remote" value="" placeholder="http://" class="input-txt" onKeyup="keyupRemote(this, 'litpic');" style="display: none;">
  191. &nbsp;
  192. <label><input type="checkbox" name="is_remote" id="is_remote" value="1" onClick="clickRemote(this, 'litpic');">远程图片</label>
  193. <span class="err"></span>
  194. <p class="notic">当没有手动上传图片时候,会自动提取相册的第一张图片作为封面</p>
  195. </dd>
  196. </dl>
  197. {/if}
  198. <?php if((int)$topid === 38){ ?>
  199. <!---显示职称级别--->
  200. <dl class="row">
  201. <dt class="tit">
  202. <label for="title">职称级别</label>
  203. </dt>
  204. <dd class="opt">
  205. <select name="level_group_id" id="catchoose5">
  206. {foreach $level_group_list as $key=>$vo}
  207. <option value="{$vo.id}" {eq name="level_group_id" value="$vo.id"}selected{/eq}>{$vo.typename}</option>
  208. {/foreach}
  209. </select>
  210. <select name="level_group_name" id="catchoose6">
  211. {foreach $level_group_name as $key=>$vo}
  212. <option value="{$vo.aid}" {eq name="level_group_name" value="$vo.aid"}selected{/eq}>{$vo.title}</option>
  213. {/foreach}
  214. </select>
  215. </dd>
  216. </dl>
  217. <script>
  218. $('#catchoose5').change(function(){
  219. ///console.log($(this).val());
  220. console.log($(this).val());
  221. var data = {
  222. 'typeid': $(this).val()
  223. };
  224. //请求
  225. $.post("/login.php?m=admin&c=Archives&a=get_level_list", data, function (res){
  226. //计算select
  227. var html = '';
  228. $.each(res.data,function (i,e){
  229. html += '<option value="'+e.aid+'">'+e.title+'</option>';
  230. });
  231. //console.log(html);
  232. $('#catchoose6').html(html);
  233. });
  234. });
  235. </script>
  236. <?php } ?>
  237. <?php
  238. //echo $typeid;
  239. //论文期刊模板参考
  240. if((int)$typeid === 127){
  241. ?>
  242. <dl class="row">
  243. <dt class="tit">
  244. <label for="title">关联期刊</label>
  245. </dt>
  246. <dd class="opt">
  247. <input type="text" name="lunwen_id" value="0"/>
  248. </dd>
  249. </dl>
  250. <?php
  251. }
  252. ?>
  253. <?php
  254. //echo $typeid;
  255. //论文期刊模板参考
  256. if((int)$typeid === 127){
  257. ?>
  258. <dl class="row">
  259. <dt class="tit">
  260. <label for="title">关联期刊</label>
  261. </dt>
  262. <dd class="opt">
  263. <input type="text" name="lunwen_id" value="0"/>
  264. </dd>
  265. </dl>
  266. <?php
  267. }
  268. ?>
  269. <?php
  270. if((int)$typeid === 126 || (int)$typeid === 825 || (int)$typeid === 826){
  271. $tag_name = "职称标签";
  272. }else{
  273. $tag_name = "文章标签";
  274. ?>
  275. <?php
  276. }
  277. ?>
  278. <dl class="row">
  279. <dt class="tit">
  280. <label for="title">{$tag_name}</label>
  281. </dt>
  282. <dd class="opt">
  283. <select name="product_tag_id" id="catchoose666">
  284. <option value="0">默认标签</option>
  285. {foreach $product_tag as $key=>$vo}
  286. <option value="{$vo.aid}" {eq name="product_tag_id" value="$vo.aid"}selected{/eq}>{$vo.title}</option>
  287. {/foreach}
  288. </select>
  289. </dd>
  290. </dl>
  291. <!-- #weapp_diy001_excel# -->
  292. <!-- #weapp_diy002_excel# -->
  293. <!---end--->
  294. </div>
  295. <div class="layui-tab-item">
  296. {include file="archives/get_field_addonextitem" /}
  297. </div>
  298. <div class="layui-tab-item">
  299. </div>
  300. </div>
  301. </div>
  302. </div>
  303. <!-- 常规信息 -->
  304. <!-- SEO设置 -->
  305. <div class="ncap-form-default tab_div_2" style="display:none;">
  306. <dl class="row">
  307. <dt class="tit">
  308. <label for="seo_title">SEO标题</label>
  309. </dt>
  310. <dd class="opt">
  311. <input type="text" value="" name="seo_title" id="seo_title" class="input-txt">
  312. <span class="err"></span>
  313. <p class="notic">一般不超过80个字符,为空时系统自动构成,可以到 <a href="{:url('Seo/index', array('inc_type'=>'seo'))}">SEO设置 - SEO基础</a> 中设置构成规则。</p>
  314. </dd>
  315. </dl>
  316. <dl class="row">
  317. <dt class="tit">
  318. <label>SEO关键词</label>
  319. </dt>
  320. <dd class="opt">
  321. <textarea rows="5" cols="60" id="seo_keywords" name="seo_keywords" style="height:20px;"></textarea>
  322. <span class="err"></span>
  323. <p class="notic">一般不超过100个字符,多个关键词请用英文逗号(,)隔开,建议3到5个关键词。</p>
  324. </dd>
  325. </dl>
  326. <dl class="row">
  327. <dt class="tit">
  328. <label>SEO描述</label>
  329. </dt>
  330. <dd class="opt">
  331. <textarea rows="5" cols="60" id="seo_description" name="seo_description" style="height:54px;" class="keywordsTextarea" onkeyup="monitorInputStr();" onkeypress="monitorInputStr();"></textarea>
  332. <span class="err"></span>
  333. <p class="notic">一般不超过100个字符,不填写时系统自动提取正文的前100个字符</p>
  334. <p class="notic2 none" id="beenWritten">你已输入<span id="beenWrittenStr">0</span>个字符</p>
  335. </dd>
  336. </dl>
  337. </div>
  338. <!-- SEO设置 -->
  339. <!-- 其他参数 -->
  340. <div class="ncap-form-default tab_div_3" style="display:none;">
  341. {if condition="!empty($channelfield_row['author']) AND 1 == $channelfield_row['litpic']['ifeditable']"}
  342. <dl class="row">
  343. <dt class="tit">
  344. <label for="author">作者</label>
  345. </dt>
  346. <dd class="opt">
  347. <input type="text" value="{$Think.session.admin_info.pen_name|default='小编'}" name="author" id="author" class="input-txt">
  348. <span class="err"></span>
  349. <p class="notic">设置作者默认名称(将同步至管理员笔名)</p>
  350. </dd>
  351. </dl>
  352. {/if}
  353. <dl class="row dl_origin">
  354. <dt class="tit">
  355. <label>来源</label>
  356. </dt>
  357. <dd class="opt origin-hot">
  358. <input type="text" value="{$system_originlist_0}" name="origin" id="origin" class="input-txt" onclick="searchOrigin(this);" autocomplete="off">
  359. <div class="origin-hot-list" style="display: none;" id="search_keywords_list_origin"></div>
  360. <textarea id="system_originlist_str" style="display: none;">{$system_originlist_str}</textarea>
  361. <span class="setting" onclick="set_originlist();">设置</span>
  362. <span class="err"></span>
  363. <p class="notic">为空时默认“网络”</p>
  364. </dd>
  365. </dl>
  366. <dl class="row">
  367. <dt class="tit">
  368. <label>点击数</label>
  369. </dt>
  370. <dd class="opt">
  371. <input type="text" value="{$rand_arcclick}" name="click" id="click" class="input-txt">
  372. <span class="err"></span>
  373. </dd>
  374. </dl>
  375. <dl class="row">
  376. <dt class="tit">
  377. <label>阅读权限</label>
  378. </dt>
  379. <dd class="opt">
  380. <select name="arcrank" id="arcrank" {if $admin_info.role_id>0&&$auth_role_info.check_oneself<1} disabled="disabled" {/if}>
  381. {volist name="arcrank_list" id="vo"}
  382. <option value="{$vo.rank}" {if $admin_info.role_id>0&&$auth_role_info.check_oneself<1&&$vo.rank==-1} selected="selected" {/if}>{$vo.name}</option>
  383. {/volist}
  384. </select>
  385. <span class="err"></span>
  386. </dd>
  387. </dl>
  388. <!-- #weapp_UsersGroup_content_users_id={$field.users_id}#--><!-- #weapp_UsersGroup_content# -->
  389. <dl class="row">
  390. <dt class="tit">
  391. <label for="articleForm">发布时间</label>
  392. </dt>
  393. <dd class="opt">
  394. <input type="text" class="input-txt" id="add_time" name="add_time" value="{php}echo date('Y-m-d H:i:s'){/php}" autocomplete="off">
  395. <span class="add-on input-group-addon">
  396. <i class="glyphicon glyphicon-calendar fa fa-calendar"></i>
  397. </span>
  398. <span class="err"></span>
  399. </dd>
  400. </dl>
  401. <dl class="row">
  402. <dt class="tit">
  403. <label for="tempview">文档模板</label>
  404. </dt>
  405. <dd class="opt">
  406. <select name="tempview" id="tempview">
  407. {volist name='$templateList' id='vo'}
  408. <option value="{$vo}" {eq name='$vo' value='$tempview'}selected{/eq}>{$vo}</option>
  409. {/volist}
  410. </select>
  411. <input type="hidden" name="type_tempview" value="{$tempview}" />
  412. <span class="err"></span>
  413. </dd>
  414. </dl>
  415. <dl class="row {notin name='$seo_pseudo' value='2,3'}no-grey{/notin}">
  416. <dt class="tit">
  417. <label>自定义文件名</label>
  418. </dt>
  419. <dd class="opt">
  420. <input type="text" {notin name='$seo_pseudo' value='2,3'}readonly="readonly" title="动态模式下不支持自定义文档url"{/notin} value="" name="htmlfilename" id="htmlfilename" autocomplete="off" onkeyup="this.value=this.value.replace(/[^\u4E00-\u9FA5\w\-]/g,'-');" onpaste="this.value=this.value.replace(/[^\u4E00-\u9FA5\w\-]/g,'-');" class="input-txt {notin name='$seo_pseudo' value='2,3'}no-drop{/notin}">.html
  421. <span class="err"></span>
  422. <p class="notic">自定义文件名可由字母、数字、下划线(_)、连接符(-)等符号组成,除此之外其他字符将自动转为连接符(-)</p>
  423. </dd>
  424. </dl>
  425. </div>
  426. <!-- 其他参数 -->
  427. <!-- #weapp_diy001_body# -->
  428. <!-- #weapp_diy002_body# -->
  429. <!-- #weapp_demontrate_div# -->
  430. <!-- #weapp_div# -->
  431. <div class="ncap-form-default">
  432. <div class="bot2">
  433. <input type="hidden" name="gourl" value="{$gourl|default=''}">
  434. <input type="hidden" name="channel" value="{$Request.param.channel|default=''}">
  435. <input type="hidden" name="editor_addonFieldExt" id="editor_addonFieldExt" value="">
  436. <a href="JavaScript:void(0);" onclick="check_submit();" class="ncap-btn-big ncap-btn-green" id="submitBtn">确认提交</a>
  437. {include file="public/callback_page_2" /}<!-- 返回按钮 -->
  438. </div>
  439. </div>
  440. </form>
  441. </div>
  442. <script type="text/javascript">
  443. layui.use(['laydate','element'], function() {
  444. var $ = layui.jquery
  445. ,element = layui.element;
  446. var laydate = layui.laydate;
  447. laydate.render({
  448. elem: '#add_time'
  449. ,type: 'datetime'
  450. });
  451. })
  452. $(function () {
  453. try {
  454. var web_citysite_open = {$global['web_citysite_open']|default=0};
  455. var site_province_id = {$site_province_id|default=0};
  456. var site_city_id = {$site_city_id|default=0};
  457. var site_area_id = {$site_area_id|default=0};
  458. if (web_citysite_open > 0 && site_province_id > 0) {
  459. $('select[name=province_id]').val(site_province_id);
  460. set_city_list(site_city_id);
  461. set_area_list(site_area_id);
  462. }
  463. }catch(e){}
  464. //选项卡切换列表
  465. $('.tab-base').find('.tab').click(function(){
  466. $('.tab-base').find('.tab').each(function(){
  467. $(this).removeClass('current');
  468. });
  469. $(this).addClass('current');
  470. var tab_index = $(this).data('index');
  471. $(".tab_div_1, .tab_div_2, .tab_div_3").hide();
  472. $(".tab_div_"+tab_index).show();
  473. layer.closeAll();
  474. });
  475. $('input[name=is_jump]').click(function(){
  476. if ($(this).is(':checked')) {
  477. $('.dl_jump').show();
  478. } else {
  479. $('.dl_jump').hide();
  480. }
  481. });
  482. var dftypeid = {$typeid|default='0'};
  483. $('#typeid').change(function(){
  484. var current_channel = $(this).find('option:selected').data('current_channel');
  485. if (0 < $(this).val() && {$channeltype} != current_channel) {
  486. showErrorMsg('请选择对应模型的栏目!');
  487. $(this).val(dftypeid);
  488. } else if ({$channeltype} == current_channel) {
  489. layer.closeAll();
  490. }
  491. GetAddonextitem(1, $(this).val(), {$channeltype}, 0, true, 'Custom');
  492. });
  493. $(document).click(function(){
  494. $('#often_tags').hide();
  495. $('#often_tags_input').hide();
  496. event.stopPropagation();
  497. });
  498. $('#often_tags').click(function(){
  499. $('#often_tags').show();
  500. event.stopPropagation();
  501. });
  502. $('input[name=tags]').keyup(function(){
  503. var tags = $.trim($(this).val());
  504. $('#seo_keywords').val(tags);
  505. });
  506. });
  507. // 判断输入框是否为空
  508. function check_submit(){
  509. if($.trim($('input[name=title]').val()) == ''){
  510. $($('.tab-base').find('.tab')[0]).trigger('click');
  511. showErrorMsg('标题不能为空!');
  512. $('input[name=title]').focus();
  513. return false;
  514. }
  515. if ($('#typeid').val() == 0) {
  516. $($('.tab-base').find('.tab')[0]).trigger('click');
  517. showErrorMsg('请选择栏目…!');
  518. $('#typeid').focus();
  519. return false;
  520. }
  521. layer_loading('正在处理');
  522. if(!ajax_check_htmlfilename())
  523. {
  524. layer.closeAll();
  525. showErrorMsg('同栏目下,自定义文件名已存在!');
  526. $('input[name=htmlfilename]').focus();
  527. return false;
  528. }
  529. setTimeout(function (){
  530. editor_auto_210607();
  531. $('#post_form').submit();
  532. }, 1);
  533. }
  534. function img_call_back(fileurl_tmp)
  535. {
  536. $("#litpic_local").val(fileurl_tmp);
  537. $("#img_a").attr('href', fileurl_tmp);
  538. $("#img_i").attr('onmouseover', "layer_tips=layer.tips('<img src="+fileurl_tmp+" class=\\'layer_tips_img\\'>',this,{tips: [1, '#fff']});");
  539. $("input[name=is_litpic]").attr('checked', true); // 自动勾选属性[图片]
  540. }
  541. </script>
  542. <script>
  543. try{
  544. var mt20_1649209614 = sessionStorage.getItem("mt20_1649209614");
  545. if (mt20_1649209614 == 1){
  546. $("#geduan_div").removeClass("h10");
  547. }else{
  548. $("#geduan_div").addClass("h10");
  549. }
  550. }catch(e){}
  551. </script>
  552. {include file="public/footer" /}
  553. <style>
  554. #addonFieldExt_content_4{
  555. width: 375px !important;
  556. }
  557. </style>