Bez popisu
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_notice_index.htm 13KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359
  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="users/skin/fonts/css/font-awesome.css" /}
  16. {eyou:static file="/public/static/common/js/jquery.min.js"/}
  17. {eyou:static file="/public/plugins/layer-v3.1.0/layer.js"/}
  18. {eyou:static file="/public/static/common/js/tag_global.js"/}
  19. </head>
  20. <body class="centre">
  21. <!-- 头部 -->
  22. {eyou:include file="users/users_header.htm" /}
  23. <!-- END -->
  24. <div class="breadcrumbs"></div>
  25. <div class="ey-body-bg">
  26. <div class="ey-body pd0">
  27. <div class="ey-container w1226">
  28. <!-- 侧边 -->
  29. {eyou:include file="users/users_left.htm" /}
  30. <!-- END -->
  31. <!-- 中部 -->
  32. <div class="ey-con fr" >
  33. <div class="el-main main-bg xin_mian">
  34. <!-- 顶部导航栏 -->
  35. <div class="el-row shop-oper">
  36. <h1 class="title">消息通知</h1>
  37. </div>
  38. <!-- END -->
  39. <div class="el-table message-list mt10" style="width: 100%;" id="questions">
  40. <ul class="services-list">
  41. {empty name="$eyou.field.data"}
  42. <div class="cell null-data pt100 tc">
  43. <span class="mb10"><img id='litpic_img' src="{eyou:static file='users/skin/images/null-data.png' /}"/></span>
  44. <p>当前暂无消息通知哦~</p>
  45. </div>
  46. {else/}
  47. {eyou:volist name="$eyou.field.data" id="vo"}
  48. <li class="con {neq name='$vo.is_read' value='1'}weidu unread_state_{$vo.id}{/neq}">
  49. <div class="title_n">
  50. <label class="checkbox-label release-checkbox">
  51. <span> &nbsp; </span>
  52. <input class="checkbox" type="checkbox" name="ids[]" value="{$vo.id}">
  53. <span class="check-mark"></span>
  54. </label>
  55. <span class="read-state_n"></span>
  56. <a href="javascript:void(0);" data-id="{$vo.id}" data-title="{$vo.title}" data-content="{$vo.remark}" class="open-content">
  57. {$vo.title}
  58. </a>
  59. <span class="time_n open-content" data-id="{$vo.id}">{$vo.add_time|date='Y-m-d H:i:s',###} <i class="fa fa-angle-down"></i></span>
  60. </div>
  61. <div class="service-content">
  62. <div class="service-info-text">
  63. <p>{$vo.remark}</p>
  64. </div>
  65. </div>
  66. </li>
  67. {/eyou:volist}
  68. {/empty}
  69. </ul>
  70. {notempty name="$eyou.field.data"}
  71. <div class="message-footer">
  72. <label class="checkbox-label release-checkbox notice-checkbox">
  73. <span> &nbsp; </span>
  74. <input class="checkbox" type="checkbox" onclick="javascript:$('input[name*=ids]').prop('checked',this.checked);">
  75. <span class="check-mark"></span>
  76. </label>
  77. <a id="del_btn" class="el-button el-button--default is-disabled el-button--small" data-disabled='1' href="javascript:void(0);" onclick="BatchDelData(this, 'ids');" data-url="{$eyou.field.delurl}">
  78. 删除
  79. </a>
  80. <a id="signRead_btn" class="el-button el-button--default is-disabled el-button--small" data-disabled='1' href="javascript:void(0);" onclick="BatchReadData(this, 'ids');">
  81. 标记已读
  82. </a>
  83. </div>
  84. {/notempty}
  85. </div>
  86. {notempty name="$eyou.field.data"}
  87. <div style="text-align: center;">
  88. {$page}
  89. {eyou:if condition="!empty($pager->totalRows)"}
  90. <div class="fytotal">共{$pager->totalRows}条记录</div>
  91. {/eyou:if}
  92. </div>
  93. {/notempty}
  94. </div>
  95. <!-- END -->
  96. </div>
  97. </div>
  98. </div>
  99. </div>
  100. <script type="text/javascript">
  101. //显示消息内容、手风琴效果
  102. $(function() {
  103. $(".open-content").on("click", function() {
  104. var next = $(this).parent('.title_n').next('.service-content');
  105. var icon = $(this).parent('.title_n').find('i');
  106. var par=$(this).parent('.title_n');
  107. next.slideToggle('fade');
  108. if (icon.hasClass('fa fa-angle-down')) {
  109. icon.removeClass('fa fa-angle-down');
  110. icon.addClass('fa fa-angle-up');
  111. } else {
  112. icon.removeClass('fa fa-angle-up');
  113. icon.addClass('fa fa-angle-down');
  114. }
  115. if(!par.hasClass('cur')){
  116. par.addClass('cur');
  117. }else{
  118. par.removeClass('cur');
  119. }
  120. $('.service-content').not(next).slideUp('fast'); //不是当前点击的内容全部向上收起
  121. $(".message-list>ul>li>.title_n>.time_n").children('i').not(icon).attr('class','fa fa-angle-down');
  122. $('.title_n').not(par).removeClass('cur');
  123. read_notice($(this));
  124. return false;
  125. });
  126. });
  127. $(function(){
  128. $('input[type=checkbox]').click(function(){
  129. if ($('input[name*=ids]:checked').length > 0) {
  130. $('#del_btn').removeClass('is-disabled').attr('data-disabled', 0);
  131. $('#signRead_btn').removeClass('is-disabled').attr('data-disabled', 0);
  132. } else {
  133. $('#del_btn').addClass('is-disabled').attr('data-disabled', 1);
  134. $('#signRead_btn').addClass('is-disabled').attr('data-disabled', 1);
  135. }
  136. });
  137. });
  138. function read_notice(obj){
  139. var id=$(obj).attr('data-id');
  140. $.ajax({
  141. url: "{eyou:url link='api/Ajax/notice_read'/}",
  142. data: {id:id,_ajax:1},
  143. type:'get',
  144. dataType:'json',
  145. success:function(res){
  146. if(res.code == 1) {
  147. $('.unread_state_' + id).removeClass('weidu');
  148. $('.unread_state_' + id).removeClass('unread_state_' + id);
  149. }
  150. }
  151. });
  152. }
  153. // 删除单个通知
  154. function DelData(obj) {
  155. layer.confirm('是否删除该消息?', {
  156. title: false,
  157. btn: ['是','否'] //按钮
  158. }, function(){
  159. layer_loading('正在处理');
  160. // 确定
  161. $.ajax({
  162. type: "POST",
  163. url: $(obj).attr('data-url'),
  164. data: {del_id:$(obj).attr('data-id'),_ajax:1},
  165. dataType: 'json',
  166. success: function (res) {
  167. layer.closeAll();
  168. if(res.code == 1){
  169. layer.msg(res.msg, {icon: 6,time:1500});
  170. window.location.reload();
  171. }else{
  172. showErrorAlert(res.msg);
  173. }
  174. },
  175. error:function(e){
  176. layer.closeAll();
  177. showErrorAlert(e.responseText);
  178. }
  179. });
  180. }, function(index){
  181. layer.close(index);
  182. });
  183. }
  184. // 批量删除通知
  185. function BatchDelData(obj, name) {
  186. var data_disabled = $(obj).attr('data-disabled');
  187. if (1 == data_disabled) {
  188. return false;
  189. }
  190. var a = [];
  191. $('input[name^='+name+']').each(function(i,o){
  192. if($(o).is(':checked')){
  193. a.push($(o).val());
  194. }
  195. })
  196. if(a.length == 0){
  197. showErrorAlert('请至少选择一项!');
  198. return;
  199. }
  200. // 删除按钮
  201. layer.confirm('确认批量删除消息?', {
  202. title: false,
  203. btn: ['确定', '取消'] //按钮
  204. }, function () {
  205. layer_loading('正在处理');
  206. $.ajax({
  207. type: "POST",
  208. url: $(obj).attr('data-url'),
  209. data: {del_id:a,_ajax:1},
  210. dataType: 'json',
  211. success: function (res) {
  212. layer.closeAll();
  213. if(res.code == 1){
  214. layer.msg(res.msg, {icon: 6,time:1500});
  215. window.location.reload();
  216. }else{
  217. showErrorAlert(res.msg);
  218. }
  219. },
  220. error:function(e){
  221. layer.closeAll();
  222. showErrorAlert(e.responseText);
  223. }
  224. });
  225. }, function (index) {
  226. layer.closeAll(index);
  227. });
  228. }
  229. // 批量已读
  230. function BatchReadData(obj, name) {
  231. var data_disabled = $(obj).attr('data-disabled');
  232. if (1 == data_disabled) {
  233. return false;
  234. }
  235. var a = [];
  236. $('input[name^='+name+']').each(function(i,o){
  237. if($(o).is(':checked')){
  238. a.push($(o).val());
  239. }
  240. })
  241. if(a.length == 0){
  242. showErrorAlert('请至少选择一项!');
  243. return;
  244. }
  245. layer.confirm('确认批量标记已读?', {
  246. title: false,
  247. btn: ['确定', '取消'] //按钮
  248. }, function () {
  249. layer_loading('正在处理');
  250. $.ajax({
  251. type: "POST",
  252. url: "{eyou:url link='user/UsersNotice/batch_read'/}",
  253. data: {del_id:a,_ajax:1},
  254. dataType: 'json',
  255. success: function (res) {
  256. layer.closeAll();
  257. if(res.code == 1){
  258. layer.msg(res.msg, {icon: 6,time:1500});
  259. window.location.reload();
  260. }else{
  261. showErrorAlert(res.msg);
  262. }
  263. },
  264. error:function(e){
  265. layer.closeAll();
  266. showErrorAlert(e.responseText);
  267. }
  268. });
  269. }, function (index) {
  270. layer.closeAll(index);
  271. });
  272. }
  273. // 所有已读
  274. function ReadAllData(obj, name) {
  275. layer.confirm('确认全部标记已读?', {
  276. title: false,
  277. btn: ['确定', '取消'] //按钮
  278. }, function () {
  279. layer_loading('正在处理');
  280. $.ajax({
  281. type: "POST",
  282. url: "{eyou:url link='user/UsersNotice/batch_read_all'/}",
  283. data: {_ajax:1},
  284. dataType: 'json',
  285. success: function (res) {
  286. layer.closeAll();
  287. if(res.code == 1){
  288. layer.msg(res.msg, {icon: 6,time:1500});
  289. window.location.reload();
  290. }else{
  291. showErrorAlert(res.msg);
  292. }
  293. },
  294. error:function(e){
  295. layer.closeAll();
  296. showErrorAlert(e.responseText);
  297. }
  298. });
  299. }, function (index) {
  300. layer.closeAll(index);
  301. });
  302. }
  303. // 删除所有通知
  304. function DelAllData(obj, name) {
  305. // 删除按钮
  306. layer.confirm('确认删除所有消息?', {
  307. title: false,
  308. btn: ['确定', '取消'] //按钮
  309. }, function () {
  310. layer_loading('正在处理');
  311. $.ajax({
  312. type: "POST",
  313. url: "{eyou:url link='user/UsersNotice/del_all'/}",
  314. data: {_ajax:1},
  315. dataType: 'json',
  316. success: function (res) {
  317. layer.closeAll();
  318. if(res.code == 1){
  319. layer.msg(res.msg, {icon: 6,time:1500});
  320. window.location.reload();
  321. }else{
  322. showErrorAlert(res.msg);
  323. }
  324. },
  325. error:function(e){
  326. layer.closeAll();
  327. showErrorAlert(e.responseText);
  328. }
  329. });
  330. }, function (index) {
  331. layer.closeAll(index);
  332. });
  333. }
  334. </script>
  335. {eyou:include file="users/users_footer.htm" /}
  336. <!-- END -->