add.html 7.5 KB

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