설명 없음
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.

index.htm 11KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274
  1. {include file="public/layout" /}
  2. <body class="bodystyle" style="cursor: default; -moz-user-select: inherit; min-width:400px;">
  3. <div id="append_parent"></div>
  4. <div id="ajaxwaitid"></div>
  5. <div class="page" style="min-width: 400px;">
  6. {include file="ask/bar" /}
  7. <div class="flexigrid">
  8. <div class="hDiv">
  9. <div class="hDivBox">
  10. <table cellspacing="0" cellpadding="0" style="width: 100%">
  11. <thead>
  12. <tr>
  13. <th abbr="article_show" axis="col5" class="w10 none">
  14. <div class="tc"></div>
  15. </th>
  16. <th abbr="ac_id" axis="col4">
  17. <div class="text-l10 ml10">栏目名称</div>
  18. </th>
  19. <th abbr="article_time" axis="col6" class="w150">
  20. <div class="tc">所属栏目</div>
  21. </th>
  22. <th abbr="article_time" axis="col6" class="w160">
  23. <div class="tc">操作</div>
  24. </th>
  25. <th abbr="article_time" axis="col6" class="w60">
  26. <div class="tc">排序</div>
  27. </th>
  28. </tr>
  29. </thead>
  30. </table>
  31. </div>
  32. </div>
  33. <div class="bDiv" style="height: auto;">
  34. <form id="PostForm">
  35. <div id="flexigrid" cellpadding="0" cellspacing="0" border="0">
  36. <table style="width: 100%">
  37. <tbody id='TbodyTemplate'>
  38. {empty name="list"}
  39. <tr>
  40. <td class="no-data" align="center" axis="col0" colspan="50">
  41. <div class="no_row">
  42. <div class="no_pic"><img src="__SKIN__/images/null-data.png"></div>
  43. </div>
  44. </td>
  45. </tr>
  46. {else/}
  47. {volist name="list" id="vo"}
  48. <tr class="tr">
  49. <td class="sort none">
  50. <div class="w10 tc">
  51. <input type="hidden" name="type_id[]" value="{$vo.type_id}">
  52. </div>
  53. </td>
  54. <td style="width: 100%">
  55. <div style="" class="ml10">
  56. {$vo.type_name_input}
  57. </div>
  58. </td>
  59. <td class="">
  60. <div class="w150 tc">
  61. {$vo.parent_name}
  62. <input type="hidden" name="parent_id[]" value="{$vo.parent_id}">
  63. </div>
  64. </td>
  65. <td class="operation">
  66. <div class="w160 tc">
  67. {eq name="'Ask@ask_type_seo'|is_check_access" value="1"}
  68. <a class="btn blue hint hint-top" data-hint="可设置seo" href="javascript:void(0);" data-url="{:url('Ask/ask_type_seo', ['type_id'=>$vo.type_id])}" data-title="{$vo['type_name']} - SEO配置" onclick="SeoEdit(this);">编辑</a>
  69. <i></i>
  70. {/eq}
  71. {eq name="'Ask@ask_type_del'|is_check_access" value="1"}
  72. <a class="btn red" href="javascript:void(0);" data-url="{:url('Ask/ask_type_del')}" onclick="FindDelData(this, '{$vo.type_id}');">删除</a>
  73. {/eq}
  74. </div>
  75. </td>
  76. <td class="">
  77. <div class="w60 tc">
  78. <input type="text" onChange="changeTableVal('ask_type','type_id','{$vo.type_id}','sort_order',this);" size="4" value="{$vo.sort_order}" class="tc" name="sort_order[]"/>
  79. </div>
  80. </td>
  81. </tr>
  82. {/volist}
  83. {/empty}
  84. </tbody>
  85. </table>
  86. <div id='Template'></div>
  87. </div>
  88. </form>
  89. <div class="iDiv" style="display: none;"></div>
  90. </div>
  91. <div class="footer-oper">
  92. <div class="fbutton">
  93. <a href="javascript:void(0);" data-url="{:url('Ask/ajax_ask_type_save')}" onclick="saveAskData(this);" class="layui-btn layui-btn-primary">
  94. <span class="">保存</span>
  95. </a>
  96. </div>
  97. <div class="fbutton">
  98. <a onclick="AskType(this);" class="layui-btn layui-btn-primary">
  99. <span class="red">新增栏目</span>
  100. </a>
  101. </div>
  102. </div>
  103. <div style="clear:both"></div>
  104. </div>
  105. </div>
  106. <input type="hidden" id="IsEmpty" value="{$IsEmpty}">
  107. <script type="text/javascript">
  108. function SeoEdit(obj) {
  109. var url = $(obj).data('url');
  110. var title = $(obj).data('title');
  111. //iframe窗
  112. layer.open({
  113. type: 2,
  114. title: title,
  115. fixed: true,
  116. shadeClose: false,
  117. shade: layer_shade,
  118. area: ['700px', '430px'],
  119. content: url
  120. });
  121. }
  122. var SerialNum = $('#TbodyTemplate .tr').length;
  123. function AskType(){
  124. // tr数,取唯一标识
  125. var AddHtml = [];
  126. AddHtml +=
  127. [
  128. '<tr class="tr" id="tr_'+SerialNum+'">'+
  129. '<td class="sort none">'+
  130. '<div class="w10 tc"><input type="hidden" name="type_id[]"></div>'+
  131. '</td>'+
  132. '<td style="width: 100%">'+
  133. '<div style="" class="ml10">'+
  134. '<input type="text" name="type_name[]" class="w220">'+
  135. '</div>'+
  136. '</td>'+
  137. '<td>'+
  138. '<div class="w150 tc">'+
  139. '<select name="parent_id[]">'+
  140. '{volist name="$PidData" id="t_vo"}'+
  141. '<option value="{$t_vo.type_id}" >{$t_vo.type_name}</option>'+
  142. '{/volist}'+
  143. '</select>'+
  144. '</div>'+
  145. '</td>'+
  146. '<td class="operation">'+
  147. '<div class="w160 tc">'+
  148. '<a class="btn grey" href="javascript:void(0);">SEO</a>'+
  149. ' <i></i> '+
  150. '<a class="btn red" href="javascript:void(0);" data-id="tr_'+SerialNum+'" onclick="DelHtml(this)">删除</a>'+
  151. '</div>'+
  152. '</td>'+
  153. '<td>'+
  154. '<div class="w60 tc">'+
  155. '<input type="text" name="sort_order[]" class="tc" size="4" value="100">'+
  156. '</div>'+
  157. '</td>'+
  158. '</tr>'
  159. ];
  160. /*加载方式*/
  161. if (1 == $('#IsEmpty').val()) {
  162. // 已有栏目数据则执行追加
  163. $('#Template').append(AddHtml);
  164. }else{
  165. if (0 == SerialNum) {
  166. // 没有栏目则执行覆盖
  167. $('#TbodyTemplate').html(AddHtml);
  168. }else{
  169. // 已新增过一次则执行追加
  170. $('#TbodyTemplate').append(AddHtml);
  171. }
  172. }
  173. /* END */
  174. SerialNum++;
  175. }
  176. // 删除未保存的级别
  177. function DelHtml(obj){
  178. $('#'+$(obj).attr('data-id')).remove();
  179. }
  180. // 保存
  181. function saveAskData(obj){
  182. if ($('input[name*=type_name]').length == 0) {
  183. showErrorAlert('至少新增一个栏目!');
  184. return false;
  185. } else {
  186. var is_empty = true;
  187. $('input[name*=type_name]').each(function(index, item){
  188. if ($.trim($(item).val()) != '') {
  189. is_empty = false;
  190. return false;
  191. }
  192. });
  193. if (true == is_empty) {
  194. showErrorAlert('栏目名称不能为空!');
  195. return false;
  196. }
  197. }
  198. layer_loading('正在处理');
  199. $.ajax({
  200. type : 'post',
  201. url : $(obj).attr('data-url'),
  202. data : $('#PostForm').serialize(),
  203. dataType : 'json',
  204. success : function(res){
  205. layer.closeAll();
  206. if(res.code == 1){
  207. layer.msg(res.msg, {icon: 1, time:1000},function(){
  208. window.location.reload();
  209. });
  210. }else{
  211. showErrorAlert(res.msg);
  212. }
  213. },
  214. error : function(e) {
  215. layer.closeAll();
  216. showErrorAlert(e.responseText);
  217. }
  218. })
  219. }
  220. /**
  221. * 单个删除
  222. */
  223. function FindDelData(obj, del_id) {
  224. layer.confirm('此操作不可恢复,确认删除?', {
  225. area: ['480px', '190px'],
  226. move: false,
  227. title: '提示',
  228. shade: layer_shade,
  229. btnAlign:'r',
  230. closeBtn: 3,
  231. btn: ['确定','取消'] ,//按钮
  232. success: function () {
  233. $(".layui-layer-content").css('text-align', 'left');
  234. }
  235. }, function () {
  236. layer_loading('正在处理');
  237. $.ajax({
  238. url: $(obj).data('url'),
  239. type: 'post',
  240. dataType: 'json',
  241. data:{del_id:del_id,_ajax:1},
  242. success: function(res){
  243. layer.closeAll();
  244. if (1 == res.code) {
  245. layer.msg(res.msg, {time: 1000},function(){
  246. window.location.reload();
  247. });
  248. } else {
  249. showErrorAlert(res.msg);
  250. }
  251. },
  252. error : function(e) {
  253. layer.closeAll();
  254. showErrorAlert(e.responseText);
  255. }
  256. });
  257. }, function (index) {
  258. layer.closeAll(index);
  259. });
  260. }
  261. </script>
  262. {include file="public/footer" /}