No Description
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.

repeat_archives_index.htm 7.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  1. {include file="header.htm" /}
  2. <body class="bodystyle" style="cursor: default; -moz-user-select: inherit; min-width:400px;">
  3. <div class="page" style="min-width: 400px;">
  4. <form class="form-horizontal" id="post_form" action="{:weapp_url('Systemdoctor/Systemdoctor/repeat_archives_index')}" method="get">
  5. {$searchform.hidden|default=''}
  6. <div class="ncap-form-default">
  7. <dl class="row">
  8. <dt class="tit">
  9. <label for="channel">频道模型</label>
  10. </dt>
  11. <dd class="opt">
  12. <select name="channel">
  13. <option value="">--全部--</option>
  14. {volist name='$channeltype_list' id='vo'}
  15. <option value="{$vo.id}" {if condition="$vo.id == $Request.param.channel"}selected{/if}>{$vo.title}</option>
  16. {/volist}
  17. </select>
  18. <span class="err"></span>
  19. <p class="notic"></p>
  20. </dd>
  21. </dl>
  22. <dl class="row">
  23. <dt class="tit">
  24. <label for="deltype">删除选项</label>
  25. </dt>
  26. <dd class="opt">
  27. <label><input type="radio" name="deltype" value="delnew" checked onclick="change_deltype('delnew');">&nbsp;保留最旧的一条</label>&nbsp;
  28. <br/>
  29. <label><input type="radio" name="deltype" value="delold" onclick="change_deltype('delold');">&nbsp;保留最新的一条</label>&nbsp;
  30. <span class="err"></span>
  31. <p class="notic"></p>
  32. </dd>
  33. </dl>
  34. <dl class="row">
  35. <dt class="tit">
  36. <label for="size">每排列出记录</label>
  37. </dt>
  38. <dd class="opt">
  39. <input type="text" name="size" id="size" value="{$Request.param.size|default='100'}" style="width: 80px;">&nbsp;条
  40. <span class="err"></span>
  41. <p class="notic"></p>
  42. </dd>
  43. </dl>
  44. <dl class="row">
  45. <dt class="tit">
  46. <label for="info">&nbsp;</label>
  47. </dt>
  48. <dd class="opt">
  49. <input type="hidden" name="testing" value="1">
  50. <a href="JavaScript:void(0);" onclick="check_submit()" class="ncap-btn-big ncap-btn-green" id="submitBtn">分析标题重复的文档</a>
  51. </dd>
  52. </dl>
  53. </div>
  54. </form>
  55. {notempty name='$testing'}
  56. <div style="clear: both; border-top:1px solid #ccc;"></div>
  57. <div class="flexigrid" style="height: 600px;overflow-y: auto;box-sizing: border-box;">
  58. <div class="mDiv">
  59. <div class="ftitle">
  60. <h3>重复文档列表</h3>
  61. <h5>(共{$count}条记录)</h5>
  62. </div>
  63. <div title="刷新数据" class="pReload"><i class="fa fa-refresh"></i></div>
  64. </div>
  65. <div class="hDiv">
  66. <div class="hDivBox">
  67. <table cellspacing="0" cellpadding="0" style="width: 100%">
  68. <thead>
  69. <tr>
  70. <th class="sign w40" axis="col0">
  71. <div class="tc">选择</div>
  72. </th>
  73. <th abbr="article_show" axis="col5" class="w200">
  74. <div class="tc">重复数量</div>
  75. </th>
  76. <th abbr="ac_id" axis="col4">
  77. <div class="">标题</div>
  78. </th>
  79. <th axis="col1" class="w120">
  80. <div class="tc">操作</div>
  81. </th>
  82. </tr>
  83. </thead>
  84. </table>
  85. </div>
  86. </div>
  87. <div class="bDiv" style="height: auto;">
  88. <div id="flexigrid" cellpadding="0" cellspacing="0" border="0">
  89. <table style="width: 100%">
  90. <tbody>
  91. {empty name="list"}
  92. <tr>
  93. <td class="no-data" align="center" axis="col0" colspan="50">
  94. <i class="fa fa-exclamation-circle"></i>没有符合条件的记录
  95. </td>
  96. </tr>
  97. {else/}
  98. {volist name="list" id="vo"}
  99. <tr>
  100. <td class="sign">
  101. <div class="w40 tc"><input type="checkbox" name="ids[]" value="{$vo.aids}"></div>
  102. </td>
  103. <td class="sort">
  104. <div class="w200 tc">
  105. {$vo.nums}
  106. </div>
  107. </td>
  108. <td style="width: 100%">
  109. <div style="">
  110. {$vo.title}
  111. </div>
  112. </td>
  113. <td class="">
  114. <div class="w120 tc">
  115. <a class="btn red single_del" href="javascript:void(0);" data-url="{:weapp_url('Systemdoctor/Systemdoctor/repeat_archives_del',['deltype'=>'delnew'])}" data-id="{$vo.aids}" {eq name='$recycle_switch' value='1'} data-deltype="del" {else /} data-deltype="pseudo" {/eq} onClick="delfun(this);"><i class="fa fa-trash-o"></i>删除</a>
  116. <!--<a href="{$vo.arcurl}" target="_blank" class="btn blue"><i class="fa fa-pencil-square-o"></i>浏览</a>-->
  117. </div>
  118. </td>
  119. </tr>
  120. {/volist}
  121. {/empty}
  122. </tbody>
  123. </table>
  124. </div>
  125. <div class="iDiv" style="display: none;"></div>
  126. </div>
  127. <div class="tDiv">
  128. <div class="tDiv2">
  129. <div class="fbutton checkboxall">
  130. <input type="checkbox" onclick="javascript:$('input[name*=ids]').prop('checked',this.checked);">
  131. </div>
  132. <div class="fbutton">
  133. <a onclick="batch_del(this, 'ids');" id="batch_del" data-url="{:weapp_url('Systemdoctor/Systemdoctor/repeat_archives_del',['deltype'=>'delnew'])}" {eq name='$recycle_switch' value='1'} data-deltype="del" {else /} data-deltype="pseudo" {/eq}>
  134. <div class="add" title="批量删除">
  135. <span><i class="fa fa-close"></i>批量删除</span>
  136. </div>
  137. </a>
  138. </div>
  139. </div>
  140. <div style="clear:both"></div>
  141. </div>
  142. <!--分页位置-->
  143. {$pageStr}
  144. </div>
  145. {/notempty}
  146. </div>
  147. <script type="text/javascript">
  148. $(document).ready(function(){
  149. // 表格行点击选中切换
  150. $('#flexigrid > table>tbody >tr').click(function(){
  151. $(this).toggleClass('trSelected');
  152. });
  153. // 点击刷新数据
  154. $('.fa-refresh').click(function(){
  155. location.href = location.href;
  156. });
  157. });
  158. // 判断输入框是否为空
  159. function check_submit(){
  160. layer_loading('正在处理');
  161. $('#post_form').submit();
  162. }
  163. function change_deltype(deltype) {
  164. var url = "{:weapp_url('Systemdoctor/Systemdoctor/repeat_archives_del',['deltype'=>'delnew'])}";
  165. if ('delold' == deltype) {
  166. url = "{:weapp_url('Systemdoctor/Systemdoctor/repeat_archives_del',['deltype'=>'delold'])}"
  167. }
  168. $('.single_del').each(function(){
  169. $(this).attr('data-url',url);
  170. });
  171. $('#batch_del').attr('data-url',url);
  172. }
  173. </script>
  174. {include file="footer.htm" /}