Brak opisu
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.

users_collection_index.htm 9.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218
  1. <!DOCTYPE HTML>
  2. <html>
  3. <head>
  4. <meta charset="utf-8" />
  5. <title>我的收藏-{eyou:global name='web_name' /}</title>
  6. <meta name="renderer" content="webkit">
  7. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
  8. <meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" name="viewport" />
  9. <link href="{eyou:global name='web_cmspath'/}/favicon.ico" rel="shortcut icon" type="image/x-icon" />
  10. {eyou:static file="users/skin/css/eyoucms.css"/}
  11. <!-- 新样式 2020-11-25 -->
  12. {eyou:static file="users/skin/css/element/index.css" /}
  13. {eyou:static file="users/skin/css/e-user.css" /}
  14. {eyou:include file="users/skin/css/diy_css.htm"/}
  15. {eyou:static file="/public/static/common/js/jquery.min.js"/}
  16. {eyou:static file="/public/plugins/layer-v3.1.0/layer.js"/}
  17. {eyou:static file="/public/static/common/js/tag_global.js"/}
  18. </head>
  19. <body class="centre">
  20. <!-- 头部 -->
  21. {eyou:include file="users/users_header.htm" /}
  22. <!-- END -->
  23. <div class="breadcrumbs"></div>
  24. <div class="ey-body-bg">
  25. <div class="ey-body pd0">
  26. <div class="ey-container w1226">
  27. <!-- 侧边 -->
  28. {eyou:include file="users/users_left.htm" /}
  29. <!-- END -->
  30. <!-- 中部 -->
  31. <div class="ey-con fr" >
  32. <div class="mi-uc-box uc-main-box mi-user-favorite">
  33. <div class="uc-content-box portal-content-box">
  34. <div class="uc-context">
  35. <div class="box-hd">
  36. <h1 class="title">我的收藏</h1>
  37. </div>
  38. <div class="ey-con-inside mt20">
  39. <div id="finance-list_wrapper" class="el-table el-table--fit el-table--enable-row-hover el-table--enable-row-transition" style="width: 100%;">
  40. <table class="pay_details" cellspacing="0" cellpadding="0" style="width: 100%">
  41. <thead>
  42. <tr role="row">
  43. <th class="w40"> <div class="cell"> </div> </th>
  44. <th><div class="cell tl">文章标题</div></th>
  45. <th class="w150"><div class="cell tc">所属栏目</div></th>
  46. <th class="w80"><div class="cell tc">操作</div></th>
  47. </tr>
  48. </thead>
  49. <tbody>
  50. {empty name="$eyou.field.data"}
  51. <tr>
  52. <td align="center" axis="col0" colspan="50">
  53. <div class="cell pt100 tc">
  54. <span class="mb10"><img id='litpic_img' src="{eyou:static file='users/skin/images/null-data.png' /}"/></span>
  55. <p>当前暂无收藏记录哦~</p>
  56. </div>
  57. </td>
  58. </tr>
  59. {else/}
  60. {eyou:volist name="$eyou.field.data" id="vo"}
  61. <tr>
  62. <td>
  63. <div class="cell tc">
  64. <label class="checkbox-label release-checkbox">
  65. <span> &nbsp; </span>
  66. <input class="checkbox" type="checkbox" name="ids[]" value="{$vo.id}">
  67. <span class="check-mark"></span>
  68. </label>
  69. </div>
  70. </td>
  71. <td>
  72. <div class="cell tl">
  73. <a href="javascript:void(0);" data-arurl="{$vo.arcurl}" onclick="ArcUrl(this);" class="arc-name">
  74. <div class="arc-pic">
  75. {eyou:empty name='$vo.litpic' /}
  76. <img src="__PUBLIC__/static/common/images/not_adv.jpg">
  77. {eyou:else /}
  78. <img src="{$vo.litpic}">
  79. {/eyou:empty}
  80. </div>
  81. <div class="arc-title">
  82. {$vo.title}
  83. </div>
  84. </a>
  85. </div>
  86. </td>
  87. <td>
  88. <div class="cell tc">{$vo.typename}</div>
  89. </td>
  90. <td>
  91. <div class="cell tc">
  92. <a href="javascript:void(0);" class="" style="margin-right: 0;" data-id='{$vo.id}' data-url="{$eyou.field.delurl}" onclick="DelData(this);">
  93. 删除
  94. </a>
  95. </div>
  96. </td>
  97. </tr>
  98. {/eyou:volist}
  99. <tr>
  100. <td class="border-no">
  101. <div class="cell tc">
  102. <label class="checkbox-label release-checkbox">
  103. <span> &nbsp; </span>
  104. <input class="checkbox" type="checkbox" onclick="javascript:$('input[name*=ids]').prop('checked',this.checked);">
  105. <span class="check-mark"></span>
  106. </label>
  107. </div>
  108. </td>
  109. <td class="border-no">
  110. <a class="el-button el-button--default el-button--small f14" href="javascript:void(0);" onclick="BatchDelData(this, 'ids');" data-url="{$eyou.field.delurl}">
  111. <i class="el-icon-delete"></i> 批量删除
  112. </a>
  113. </td>
  114. <td class="border-no"></td>
  115. <td class="border-no"></td>
  116. <td class="border-no"></td>
  117. </tr>
  118. {/empty}
  119. </tbody>
  120. </table>
  121. </div>
  122. {$page}
  123. {eyou:if condition="!empty($pager->totalRows)"}
  124. <div class="fytotal">共{$pager->totalRows}条记录</div>
  125. {/eyou:if}
  126. </div>
  127. </div>
  128. </div>
  129. </div>
  130. <!-- END -->
  131. </div>
  132. </div>
  133. </div>
  134. </div>
  135. <script type="text/javascript">
  136. // 内容查看
  137. function ArcUrl(obj) {
  138. window.open($(obj).attr('data-arurl'));
  139. }
  140. // 删除单个收藏
  141. function DelData(obj) {
  142. layer.confirm('是否删除该收藏?', {
  143. title: false,
  144. btn: ['是','否'] //按钮
  145. }, function(){
  146. layer_loading('正在处理');
  147. // 确定
  148. $.ajax({
  149. type: "POST",
  150. url: $(obj).attr('data-url'),
  151. data: {del_id:$(obj).attr('data-id')},
  152. dataType: 'json',
  153. success: function (res) {
  154. layer.closeAll();
  155. if(res.code == 1){
  156. layer.msg(res.msg, {icon: 1});
  157. window.location.reload();
  158. }else{
  159. showErrorAlert(res.msg);
  160. }
  161. },
  162. error:function(e){
  163. layer.closeAll();
  164. showErrorAlert(e.responseText);
  165. }
  166. });
  167. }, function(index){
  168. layer.close(index);
  169. });
  170. }
  171. // 批量删除收藏
  172. function BatchDelData(obj, name) {
  173. var a = [];
  174. $('input[name^='+name+']').each(function(i,o){
  175. if($(o).is(':checked')){
  176. a.push($(o).val());
  177. }
  178. })
  179. if(a.length == 0){
  180. showErrorAlert('请至少选择一项!');
  181. return;
  182. }
  183. // 删除按钮
  184. layer.confirm('确认批量删除收藏?', {
  185. title: false,
  186. btn: ['确定', '取消'] //按钮
  187. }, function () {
  188. layer_loading('正在处理');
  189. $.ajax({
  190. type: "POST",
  191. url: $(obj).attr('data-url'),
  192. data: {del_id:a},
  193. dataType: 'json',
  194. success: function (res) {
  195. layer.closeAll();
  196. if(res.code == 1){
  197. layer.msg(res.msg, {icon: 1});
  198. window.location.reload();
  199. }else{
  200. showErrorAlert(res.msg);
  201. }
  202. },
  203. error:function(e){
  204. layer.closeAll();
  205. showErrorAlert(e.responseText);
  206. }
  207. });
  208. }, function (index) {
  209. layer.closeAll(index);
  210. });
  211. }
  212. </script>
  213. {eyou:include file="users/users_footer.htm" /}
  214. <!-- END -->