index.html 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. {include file="public/header" /}
  2. <style>
  3. .layui-table-view .layui-table[lay-size=lg] .layui-table-cell {height: 58px;line-height: 58px;}
  4. .wx-audio-content{padding:0px;border:0px;}
  5. .wx-audio-content .wx-audio-left .wx-audio-state{margin-bottom:15px;}
  6. .wx-audio-content .wx-audio-right .wx-audio-time{padding-top:0px;position: relative;bottom:6px;}
  7. .wx-audio-content .wx-audio-right .wx-audio-progrees{top:6px;}
  8. </style>
  9. <body>
  10. <div class="layui-fluid">
  11. <div class="layui-card">
  12. <div class="layui-form layui-card-header layuiadmin-card-header-auto">
  13. <div class="layui-card-body">
  14. <table id="LAY-table-manage" lay-filter="LAY-table-manage"></table>
  15. <!--操作模板-->
  16. <script type="text/html" id="opeBar">
  17. <a onclick="wk.layer_show('编辑内容','{:url('edit')}?id={{d.cid}}')" class="layui-btn layui-btn-xs" title="编辑"><i class="fa fa-pencil"></i></a>
  18. </script>
  19. </div>
  20. </div>
  21. </div>
  22. {include file="public/footer" /}
  23. <script>
  24. var music = function(){
  25. if($('#music').length == 0){
  26. $('body').append('<div id="music"></div>');
  27. }
  28. var wxAudio = wk.lay_audio({elem:'#music',src:'/static/admin/images/default.mp3'});
  29. $('#music').hide();
  30. wxAudio.audioPlay();
  31. }
  32. layui.use(['index', 'table','util'], function () {
  33. var $ = layui.$
  34. , form = layui.form
  35. , table = layui.table
  36. table.render({
  37. elem: '#LAY-table-manage'
  38. , url: '{:url("admin/Company/index")}'
  39. ,response: {
  40. statusCode: 220 //成功的状态码,默认:0
  41. }
  42. , page: true
  43. , even: false //开启隔行背景
  44. , size: 'lg' //sm小尺寸的表格 lg大尺寸
  45. // ,width:100
  46. , cellMinWidth: 150
  47. , height: "full-220"
  48. , limits: [10, 20, 30, 40, 50]
  49. , limit: "{:config('pages')}"
  50. , loading: true
  51. , toolbar:'#123'
  52. , id: 'LAY-table'
  53. , cols: [[
  54. {type: 'checkbox', fixed: 'left',}
  55. , {field: 'cid', width: 120, title: 'ID', sort: true, align: 'center'}
  56. , {field: 'text', width: 120, title: '公司简介', sort: true, align: 'center'}
  57. , {fixed: 'right', width: 120, title: '操作', align: 'center', toolbar: '#opeBar'}
  58. ]]
  59. ,done: function (res, curr, count) {
  60. $('.layui-cricle').viewer({
  61. url: 'data-original',
  62. });
  63. $.each(res.data,function(index,item) {
  64. wk.lay_audio({elem:'#music_'+item['id'],src:item['music'],width:'250px'});
  65. });
  66. }
  67. });
  68. //监听状态开关操作
  69. form.on('switch(OnOff)', function (obj) {
  70. var num = '';
  71. obj.elem.checked == true? num = 1: num = 2;
  72. //用户状态
  73. wk.status(this.value,num, '{:url("user_state")}',obj);
  74. });
  75. //事件
  76. var active = {
  77. getCheckData: function(){
  78. //批量删除
  79. wk.batchDel(getIds(),"{:url('batchDelUser')}");
  80. }
  81. ,forbiddenAll: function(){
  82. //批量禁用
  83. wk.batchForbidden(getIds(),2,"{:url('forbiddenAdmin')}");
  84. }
  85. ,usingAll: function(){
  86. //批量启用
  87. wk.usingAll(getIds(),1,"{:url('usingAdmin')}");
  88. }
  89. ,excelAll: function(){
  90. //导出Excel
  91. wk.excelAll(getIds(),$("form").serialize(),"{:url('excelAdmin')}");
  92. }
  93. };
  94. $('.layuiBtn').on('click', function () {
  95. var type = $(this).data('type');
  96. active[type] ? active[type].call(this) : '';
  97. });
  98. var getIds = function () {
  99. var ids = [];
  100. var checkStatus = table.checkStatus('LAY-table')
  101. ,data = checkStatus.data;
  102. $.each(data,function(index,item){
  103. ids.push(item['id'])
  104. });
  105. return ids;
  106. }
  107. //倒计时
  108. // var thisTimer, setCountdown = function(){
  109. // lay('#test3').addClass('layui-disabled').attr('disabled').text('完了');
  110. // var endTime = new Date(new Date().getFullYear(),new Date().getMonth(),new Date().getDate(),new Date().getHours(),new Date().getMinutes(),new Date().getSeconds() + 60).getTime() //结束日期
  111. // ,serverTime = new Date().getTime(); //假设为当前服务器时间,这里采用的是本地时间,实际使用一般是取服务端的
  112. // clearTimeout(thisTimer);
  113. // util.countdown(endTime, serverTime, function(date, serverTime, timer){
  114. // var str = date[3] + '秒';
  115. // if(date[3] == 0){
  116. // lay('#test3').removeClass('layui-disabled').removeAttr('disabled').text('完了');
  117. // }else{
  118. // lay('#test2').html(str);
  119. // }
  120. // thisTimer = timer;
  121. // });
  122. // };
  123. // var date = new Date();
  124. // setCountdown(date.getFullYear(),date.getMonth(),date.getDate(),date.getHours(),date.getMinutes(),date.getSeconds() + 60);
  125. });
  126. var thisTimer, setCountdown = function(){
  127. $('#test3').addClass('layui-disabled').attr('disabled','disabled');
  128. var endTime = new Date(new Date().getFullYear(),new Date().getMonth(),new Date().getDate(),new Date().getHours(),new Date().getMinutes(),new Date().getSeconds() + 60).getTime() //结束日期
  129. ,serverTime = new Date().getTime(); //假设为当前服务器时间,这里采用的是本地时间,实际使用一般是取服务端的
  130. clearTimeout(thisTimer);
  131. layui.util.countdown(endTime, serverTime, function(date, serverTime, timer){
  132. var str = date[3];
  133. if(date[3] == 0){
  134. $('#test3').removeClass('layui-disabled').removeAttr('disabled');
  135. $('#test2').html(60);
  136. }else{
  137. $('#test2').html(str);
  138. }
  139. thisTimer = timer;
  140. });
  141. };
  142. </script>
  143. </body>
  144. </html>