edit.html 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253
  1. <include file="public@header" />
  2. </head>
  3. <body>
  4. <div class="wrap js-check-wrap">
  5. <ul class="nav nav-tabs">
  6. <li><a href="{:url('Adminpost/index')}">文章管理</a></li>
  7. <li class="active"><a >编辑文章</a></li>
  8. </ul>
  9. <form class="form-horizontal js-ajax-form margin-top-20" action="{:url('Adminpost/edit_post')}" method="post" enctype="multipart/form-data">
  10. <input type="hidden" name="post[id]" value="{$info['id']}" />
  11. <table class="table table-bordered">
  12. <tr>
  13. <th width="80">分类</th>
  14. <td>
  15. <select class="form-control" id="input-termid" name="post[termid]">
  16. <option value="">--请选择--</option>
  17. <volist name="terms_list" id="vo">
  18. <option value="{$vo['id']}" <if condition="$info['termid'] eq $vo['id']"> selected</if>>{$vo['name']}</option>
  19. </volist>
  20. </select>
  21. <span class="form-required">*</span>
  22. </td>
  23. </tr>
  24. <tr>
  25. <th>标题</th>
  26. <td>
  27. <input type="text" class="form-control" id="input-post_title" name="post[post_title]" id="title" required value="{$info['post_title']}" placeholder="请输入标题"/>
  28. <span class="form-required">*</span>
  29. </td>
  30. </tr>
  31. <!--<tr>
  32. <th>缩略图</th>
  33. <td>
  34. <input type="text" class="form-control" id="input-image" style="width:400px" name="post[smeta]" value="{$info['smeta']}">
  35. <a href="javascript:uploadOneImage('图片上传','#input-image');">上传图片</a> <span class="form-required">*</span>
  36. </td>
  37. </tr>
  38. <tr>
  39. <th>关键词</th>
  40. <td><input type="text" name="post[post_keywords]" id="keywords" value="{$info['post_keywords']}" style="width: 400px" placeholder="请输入关键字"></td>
  41. </tr>
  42. <tr>
  43. <th>文章来源</th>
  44. <td><input type="text" name="post[post_source]" id="source" value="{$info['post_source']}" style="width: 400px" placeholder="请输入文章来源"></td>
  45. </tr>
  46. <tr>
  47. <th>摘要</th>
  48. <td>
  49. <textarea name="post[post_excerpt]" id="description" style="width: 98%; height: 50px;" placeholder="请填写摘要">{$info['post_excerpt']}</textarea>
  50. </td>
  51. </tr>-->
  52. <tr>
  53. <th>内容</th>
  54. <td>
  55. <script type="text/plain" id="content" name="post[post_content]">{$info['post_content']}</script>
  56. </td>
  57. </tr>
  58. <!--<tr>
  59. <th>修改时间</th>
  60. <td>
  61. <input type="text" name="post[post_modified]" value="{:date('Y-m-d H:i:s',time())}" class="js-datetime" style="width: 160px;">
  62. </td>
  63. </tr>
  64. <tr>
  65. <th>状态</th>
  66. <td>
  67. <label class="radio-inline"><input type="radio" name="post[post_status]" value="1" <if condition="$info['post_status'] eq 1"> checked</if>>审核通过</label>
  68. <label class="radio-inline"><input type="radio" name="post[post_status]" value="0" <if condition="$info['post_status'] eq 0"> checked</if>>待审核</label>
  69. </td>
  70. </tr>
  71. <tr>
  72. <th>置顶</th>
  73. <td>
  74. <label class="radio-inline"><input type="radio" name="post[istop]" value="1" <if condition="$info['istop'] eq 1"> checked</if>>置顶</label>
  75. <label class="radio-inline"><input type="radio" name="post[istop]" value="0" <if condition="$info['istop'] eq 0"> checked</if>>未置顶</label>
  76. </td>
  77. </tr>
  78. <tr>
  79. <th>序号</th>
  80. <td>
  81. <input type="text" name="post[topval]" id="topval" value="{$info['topval']}" style="width: 400px" >
  82. </td>
  83. </tr>
  84. <tr>
  85. <th>推荐</th>
  86. <td>
  87. <label class="radio-inline"><input type="radio" name="post[recommended]" value="1">推荐</label>
  88. <label class="radio-inline"><input type="radio" name="post[recommended]" value="0" checked>未推荐</label>
  89. </td>
  90. </tr>
  91. <tr>
  92. <th>相关阅读</th>
  93. <td><input type="text" name="post[post_relevant]" id="source" value="{$info['post_relevant']}" style="width: 400px" placeholder="请输入相关阅读">填写文章编号 ,多个用,间隔 例: 1,2,3</td>
  94. </tr>-->
  95. </table>
  96. <div class="form-group">
  97. <button type="submit" class="btn btn-primary js-ajax-submit">{:lang('SAVE')}</button>
  98. <a class="btn btn-default" href="{:url('Adminpost/index')}">{:lang('BACK')}</a>
  99. </div>
  100. </form>
  101. </div>
  102. <script src="__STATIC__/js/admin.js"></script>
  103. <script type="text/javascript">
  104. //编辑器路径定义
  105. var editorURL = GV.WEB_ROOT;
  106. </script>
  107. <script type="text/javascript" src="__STATIC__/ueditor/ueditor.config.js"></script>
  108. <script type="text/javascript" src="__STATIC__/ueditor/ueditor.all.min.js"></script>
  109. <script type="text/javascript">
  110. $(function() {
  111. /////---------------------
  112. Wind.use('validate', 'ajaxForm', 'artDialog', function() {
  113. //javascript
  114. //编辑器
  115. editorcontent = new baidu.editor.ui.Editor();
  116. editorcontent.render('content');
  117. try {
  118. editorcontent.sync();
  119. } catch (err) {
  120. }
  121. //增加编辑器验证规则
  122. jQuery.validator.addMethod('editorcontent', function() {
  123. try {
  124. editorcontent.sync();
  125. } catch (err) {
  126. }
  127. return editorcontent.hasContents();
  128. });
  129. var form = $('form.js-ajax-forms');
  130. //ie处理placeholder提交问题
  131. if ($.browser && $.browser.msie) {
  132. form.find('[placeholder]').each(function() {
  133. var input = $(this);
  134. if (input.val() == input.attr('placeholder')) {
  135. input.val('');
  136. }
  137. });
  138. }
  139. var formloading = false;
  140. //表单验证开始
  141. form.validate({
  142. //是否在获取焦点时验证
  143. onfocusout : false,
  144. //是否在敲击键盘时验证
  145. onkeyup : false,
  146. //当鼠标掉级时验证
  147. onclick : false,
  148. //验证错误
  149. showErrors : function(errorMap, errorArr) {
  150. //errorMap {'name':'错误信息'}
  151. //errorArr [{'message':'错误信息',element:({})}]
  152. try {
  153. $(errorArr[0].element).focus();
  154. art.dialog({
  155. id : 'error',
  156. icon : 'error',
  157. lock : true,
  158. fixed : true,
  159. background : "#CCCCCC",
  160. opacity : 0,
  161. content : errorArr[0].message,
  162. cancelVal : '确定',
  163. cancel : function() {
  164. $(errorArr[0].element).focus();
  165. }
  166. });
  167. } catch (err) {
  168. }
  169. },
  170. //验证规则
  171. rules : {
  172. 'post[post_title]' : {
  173. required : 1
  174. },
  175. 'post[post_content]' : {
  176. editorcontent : true
  177. }
  178. },
  179. //验证未通过提示消息
  180. messages : {
  181. 'post[post_title]' : {
  182. required : '请输入标题'
  183. },
  184. 'post[post_content]' : {
  185. editorcontent : '内容不能为空'
  186. }
  187. },
  188. //给未通过验证的元素加效果,闪烁等
  189. highlight : false,
  190. //是否在获取焦点时验证
  191. onfocusout : false,
  192. //验证通过,提交表单
  193. submitHandler : function(forms) {
  194. if (formloading)
  195. return;
  196. $(forms).ajaxSubmit({
  197. url : form.attr('action'), //按钮上是否自定义提交地址(多按钮情况)
  198. dataType : 'json',
  199. beforeSubmit : function(arr, $form, options) {
  200. formloading = true;
  201. },
  202. success : function(data, statusText, xhr, $form) {
  203. formloading = false;
  204. if (data.status) {
  205. setCookie("refersh_time", 1);
  206. //添加成功
  207. Wind.use("artDialog", function() {
  208. art.dialog({
  209. id : "succeed",
  210. icon : "succeed",
  211. fixed : true,
  212. lock : true,
  213. background : "#CCCCCC",
  214. opacity : 0,
  215. content : data.info,
  216. button : [ {
  217. name : '继续添加?',
  218. callback : function() {
  219. reloadPage(window);
  220. return true;
  221. },
  222. focus : true
  223. }, {
  224. name : '返回列表页',
  225. callback : function() {
  226. location = "{:Url('Adminpost/index')}";
  227. return true;
  228. }
  229. } ]
  230. });
  231. });
  232. } else {
  233. artdialog_alert(data.info);
  234. }
  235. }
  236. });
  237. }
  238. });
  239. });
  240. ////-------------------------
  241. });
  242. </script>
  243. </body>
  244. </html>