Geen omschrijving
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.

answer.htm 14KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344
  1. {include file="public/layout" /}
  2. <body class="bodystyle" style="overflow-y: scroll; cursor: default; -moz-user-select: inherit;">
  3. <div id="append_parent"></div>
  4. <div id="ajaxwaitid"></div>
  5. <div class="page" style="min-width: auto;">
  6. {include file="ask/bar" /}
  7. <div class="flexigrid">
  8. <div class="mDiv">
  9. <div class="ftitle">
  10. <h3>答案列表</h3>
  11. </div>
  12. <form class="navbar-form form-inline" action="{:url('Ask/answer')}" method="get" onsubmit="layer_loading('正在处理');">
  13. {$searchform.hidden|default=''}
  14. <div class="sDiv">
  15. <div class="sDiv2">
  16. <input type="text" size="30" name="keywords" class="qsbox" placeholder="搜索相关数据...">
  17. <input type="submit" class="btn" value="搜索">
  18. <i class="iconfont e-sousuo"></i>
  19. </div>
  20. </div>
  21. </form>
  22. </div>
  23. <div class="hDiv">
  24. <div class="hDivBox">
  25. <table cellspacing="0" cellpadding="0" style="width: 100%">
  26. <thead>
  27. <tr>
  28. <th class="sign w40" axis="col0">
  29. <div class="tc"><input type="checkbox" class="checkAll"></div>
  30. </th>
  31. <th abbr="article_show" axis="col5" class="w40">
  32. <div class="tc">ID</div>
  33. </th>
  34. <th abbr="ac_id" axis="col4">
  35. <div style="text-align: left; padding-left: 10px;" class="">答案内容</div>
  36. </th>
  37. <th abbr="article_title" axis="col3" class="w180">
  38. <div class="tc">回答者</div>
  39. </th>
  40. <th abbr="article_time" axis="col6" class="w150">
  41. <div class="tc">回答时间</div>
  42. </th>
  43. <th abbr="article_time" axis="col6" class="w60">
  44. <div class="tc">审核</div>
  45. </th>
  46. <th abbr="article_time" axis="col6" class="w120">
  47. <div class="tc">操作</div>
  48. </th>
  49. </tr>
  50. </thead>
  51. </table>
  52. </div>
  53. </div>
  54. <div class="bDiv" style="height: auto;">
  55. <div id="flexigrid" cellpadding="0" cellspacing="0" border="0">
  56. <table style="width: 100%">
  57. <tbody>
  58. {empty name="list"}
  59. <tr>
  60. <td class="no-data" align="center" axis="col0" colspan="50">
  61. <div class="no_row">
  62. <div class="no_pic"><img src="__SKIN__/images/null-data.png"></div>
  63. </div>
  64. </td>
  65. </tr>
  66. {else/}
  67. {volist name="list" id="vo"}
  68. <tr>
  69. <td class="sign">
  70. <div class="w40 tc"><input type="checkbox" name="answer_ids[]" value="{$vo.answer_id}"></div>
  71. </td>
  72. <td class="sort">
  73. <div class="w40 tc">
  74. {$vo.answer_id}
  75. </div>
  76. </td>
  77. <td style="width: 100%">
  78. <div class="tl" style="padding-left: 10px;">
  79. <a href="{$vo.HomeAnswerUrl}" target="_blank">
  80. {$vo.content}
  81. </a>
  82. </div>
  83. </td>
  84. <td class="">
  85. <div class="w180 tc" style="padding: 5px 0px;text-align: left;">
  86. <div style="float: left; margin: 0px 5px; padding: 0px;">
  87. <img width="40" height="40" style="margin-right: 5px;float: unset;margin: auto;" src="{$vo['head_pic']|get_head_pic=###}" />
  88. </div>
  89. <div style="float: left; padding: 0px;">
  90. <p style="margin-top: -5px;">
  91. {$vo['username']|default=''}
  92. </p>
  93. <p style="margin-top: -10px; color: #cccccc; font-size: 12px;">昵称:{$vo['nickname']|default=$vo['username']}</p>
  94. </div>
  95. </div>
  96. </td>
  97. <td class="">
  98. <div class="w150 tc">
  99. {$vo.add_time|MyDate='Y-m-d H:i:s',###}
  100. </div>
  101. </td>
  102. <td class="">
  103. <div class="w50 tc">
  104. {eq name="$vo['is_review']" value='1'}
  105. <span class="yes" onclick="changeTableVal('ask_answer','answer_id','{$vo.answer_id}','is_review',this);">
  106. <i class="fa fa-check-circle"></i>是
  107. </span>
  108. {else /}
  109. <span class="no" onclick="changeTableVal('ask_answer','answer_id','{$vo.answer_id}','is_review',this);">
  110. <i class="fa fa-ban"></i>否
  111. </span>
  112. {/eq}
  113. </div>
  114. </td>
  115. <td class="operation">
  116. <div class="w120 tc">
  117. <a href="{$vo.HomeUrl}" target="_blank" class="btn blue">查看问题</a>
  118. {eq name="$Think.const.CONTROLLER_NAME.'@answer_del'|is_check_access" value="1"}
  119. <i></i>
  120. <a class="btn red" href="javascript:void(0);" data-url="{:url('Ask/answer_del')}" onclick="FindDelData(this, '{$vo.answer_id}');">删除</a>
  121. {/eq}
  122. </div>
  123. </td>
  124. </tr>
  125. {/volist}
  126. {/empty}
  127. </tbody>
  128. </table>
  129. </div>
  130. <div class="iDiv" style="display: none;"></div>
  131. </div>
  132. <div class="tDiv">
  133. <div class="tDiv2">
  134. <div class="fbutton checkboxall">
  135. <input type="checkbox" class="checkAll">
  136. </div>
  137. <div class="fbutton">
  138. <a onclick="BatchDelData(this, 'answer_ids');" data-url="{:url('Ask/answer_del')}" class="layui-btn layui-btn-primary">
  139. <span>批量删除</span>
  140. </a>
  141. </div>
  142. <div class="fbutton">
  143. <a onclick="BatchReview(this, 'answer_ids');" data-url="{:url('Ask/answer_review')}" class="layui-btn layui-btn-primary">
  144. <span>批量审核</span>
  145. </a>
  146. </div>
  147. {include file="public/page" /}
  148. </div>
  149. <div style="clear:both"></div>
  150. </div>
  151. </div>
  152. </div>
  153. <script type="text/javascript">
  154. $(function(){
  155. $('input[name*=ids]').click(function(){
  156. if ($('input[name*=ids]').length == $('input[name*=ids]:checked').length) {
  157. $('.checkAll').prop('checked','checked');
  158. } else {
  159. $('.checkAll').prop('checked', false);
  160. }
  161. });
  162. $('input[type=checkbox].checkAll').click(function(){
  163. $('input[type=checkbox]').prop('checked',this.checked);
  164. });
  165. });
  166. $(document).ready(function(){
  167. // 表格行点击选中切换
  168. $('#flexigrid > table>tbody >tr').click(function(){
  169. $(this).toggleClass('trSelected');
  170. });
  171. // 点击刷新数据
  172. $('.fa-refresh').click(function(){
  173. location.href = location.href;
  174. });
  175. });
  176. /**
  177. * 批量删除提交
  178. */
  179. function BatchDelData(obj, name) {
  180. var a = [];
  181. $('input[name^='+name+']').each(function(i,o){
  182. if($(o).is(':checked')){
  183. a.push($(o).val());
  184. }
  185. })
  186. if(a.length == 0){
  187. layer.alert('请至少选择一项', {
  188. shade: layer_shade,
  189. area: ['480px', '190px'],
  190. move: false,
  191. title: '提示',
  192. btnAlign:'r',
  193. closeBtn: 3,
  194. success: function () {
  195. $(".layui-layer-content").css('text-align', 'left');
  196. }
  197. });
  198. return;
  199. }
  200. // 删除按钮
  201. layer.confirm('确认批量删除?', {
  202. area: ['480px', '190px'],
  203. move: false,
  204. title: '提示',
  205. shade: layer_shade,
  206. btnAlign:'r',
  207. closeBtn: 3,
  208. btn: ['确定','取消'] ,//按钮
  209. success: function () {
  210. $(".layui-layer-content").css('text-align', 'left');
  211. }
  212. }, function () {
  213. layer_loading('正在处理');
  214. $.ajax({
  215. type: "POST",
  216. url: $(obj).attr('data-url'),
  217. data: {del_id:a,_ajax:1},
  218. dataType: 'json',
  219. success: function (data) {
  220. layer.closeAll();
  221. if(parseInt(data.code) == 1){
  222. layer.msg(data.msg, {icon: 1});
  223. window.location.reload();
  224. }else{
  225. layer.alert(data.msg, {icon: 5});
  226. }
  227. },
  228. error:function(e){
  229. layer.closeAll();
  230. layer.alert(e.responseText, {icon: 5});
  231. }
  232. });
  233. }, function (index) {
  234. layer.closeAll(index);
  235. });
  236. }
  237. /**
  238. * 批量审核提交
  239. */
  240. function BatchReview(obj, name) {
  241. var a = [];
  242. $('input[name^='+name+']').each(function(i,o){
  243. if($(o).is(':checked')){
  244. a.push($(o).val());
  245. }
  246. })
  247. if(a.length == 0){
  248. layer.alert('请至少选择一项', {
  249. shade: layer_shade,
  250. area: ['480px', '190px'],
  251. move: false,
  252. title: '提示',
  253. btnAlign:'r',
  254. closeBtn: 3,
  255. success: function () {
  256. $(".layui-layer-content").css('text-align', 'left');
  257. }
  258. });
  259. return;
  260. }
  261. // 删除按钮
  262. layer.confirm('确认批量审核?', {
  263. area: ['480px', '190px'],
  264. move: false,
  265. title: '提示',
  266. shade: layer_shade,
  267. btnAlign:'r',
  268. closeBtn: 3,
  269. btn: ['确定','取消'] ,//按钮
  270. success: function () {
  271. $(".layui-layer-content").css('text-align', 'left');
  272. }
  273. }, function () {
  274. layer_loading('正在处理');
  275. $.ajax({
  276. type: "POST",
  277. url: $(obj).attr('data-url'),
  278. data: {ask_id:a,_ajax:1},
  279. dataType: 'json',
  280. success: function (data) {
  281. layer.closeAll();
  282. if(parseInt(data.code) == 1){
  283. layer.msg(data.msg, {icon: 1});
  284. window.location.reload();
  285. }else{
  286. layer.alert(data.msg, {icon: 5});
  287. }
  288. },
  289. error:function(e){
  290. layer.closeAll();
  291. layer.alert(e.responseText, {icon: 5});
  292. }
  293. });
  294. }, function (index) {
  295. layer.closeAll(index);
  296. });
  297. }
  298. /**
  299. * 单个删除
  300. */
  301. function FindDelData(obj, del_id) {
  302. layer.confirm('确认删除?', {
  303. area: ['480px', '190px'],
  304. move: false,
  305. title: '提示',
  306. shade: layer_shade,
  307. btnAlign:'r',
  308. closeBtn: 3,
  309. btn: ['确定','取消'] ,//按钮
  310. success: function () {
  311. $(".layui-layer-content").css('text-align', 'left');
  312. }
  313. }, function () {
  314. layer_loading('正在处理');
  315. $.ajax({
  316. url: $(obj).data('url'),
  317. type: 'post',
  318. dataType: 'json',
  319. data:{del_id:del_id,_ajax:1},
  320. success: function(res){
  321. layer.closeAll();
  322. if (1 == res.code) {
  323. layer.msg(res.msg, {time: 1000},function(){
  324. window.location.reload();
  325. });
  326. } else {
  327. layer.msg(res.msg, {time: 1500, icon: 5});
  328. }
  329. },
  330. error : function(e) {
  331. layer.closeAll();
  332. layer.alert(e.responseText, {icon: 5});
  333. }
  334. });
  335. }, function (index) {
  336. layer.closeAll(index);
  337. });
  338. }
  339. </script>
  340. {include file="public/footer" /}