123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159 |
- {include file="public/header" /}
- <style>
- .layui-table-view .layui-table[lay-size=lg] .layui-table-cell {height: 58px;line-height: 58px;}
- .wx-audio-content{padding:0px;border:0px;}
- .wx-audio-content .wx-audio-left .wx-audio-state{margin-bottom:15px;}
- .wx-audio-content .wx-audio-right .wx-audio-time{padding-top:0px;position: relative;bottom:6px;}
- .wx-audio-content .wx-audio-right .wx-audio-progrees{top:6px;}
- </style>
- <body>
- <div class="layui-fluid">
- <div class="layui-card">
- <div class="layui-form layui-card-header layuiadmin-card-header-auto">
- <button class="layui-btn" data-type="add" onclick="wk.href('{:url('add')}')">
- <i class="fa fa-plus"></i> 添加图片
- </button>
- <!--图片模板-->
- <script type="text/html" id="imgTpl">
- <ul class="layui-cricle">
- <li><img src="{{d.image}}" class="layui-table-img layui-circle"onerror="this.src='/static/admin/images/timg.jpg'" /></li>
- </ul>
- </script>
- <div class="layui-card-body">
- <table id="LAY-table-manage" lay-filter="LAY-table-manage"></table>
- <!--操作模板-->
- <script type="text/html" id="opeBar">
- <a onclick="wk.layer_show('编辑内容','{:url('edit')}?id={{d.cid}}')" class="layui-btn layui-btn-xs" title="编辑"><i class="fa fa-pencil"></i></a>
- <a class="layui-btn layui-btn-danger layui-btn-xs" title="删除" onclick="wk.confirm('{{d.cid}}','{:url('del')}')"><i class="fa fa-trash-o"></i></a>
- </script>
- </div>
- </div>
- </div>
- {include file="public/footer" /}
- <script>
- var music = function(){
- if($('#music').length == 0){
- $('body').append('<div id="music"></div>');
- }
- var wxAudio = wk.lay_audio({elem:'#music',src:'/static/admin/images/default.mp3'});
- $('#music').hide();
- wxAudio.audioPlay();
- }
- layui.use(['index', 'table','util'], function () {
- var $ = layui.$
- , form = layui.form
- , table = layui.table
- table.render({
- elem: '#LAY-table-manage'
- , url: '{:url("admin/Chart/index")}'
- ,response: {
- statusCode: 220 //成功的状态码,默认:0
- }
- , page: true
- , even: false //开启隔行背景
- , size: 'lg' //sm小尺寸的表格 lg大尺寸
- // ,width:100
- , cellMinWidth: 150
- , height: "full-220"
- , limits: [10, 20, 30, 40, 50]
- , limit: "{:config('pages')}"
- , loading: true
- , toolbar:'#123'
- , id: 'LAY-table'
- , cols: [[
- {type: 'checkbox', fixed: 'left',}
- , {field: 'cid', width: 120, title: 'ID', sort: true, align: 'center'}
- , {field: 'url', width: 300, title: '地址', sort: true, align: 'center'}
- , {field: 'image', width: 300, title: '图片', sort: true, align: 'center',templet: '#imgTpl'}
- , {fixed: 'right', width: 200, title: '操作', align: 'center', toolbar: '#opeBar'}
- ]]
- ,done: function (res, curr, count) {
- $('.layui-cricle').viewer({
- url: 'data-original',
- });
- $.each(res.data,function(index,item) {
- wk.lay_audio({elem:'#music_'+item['id'],src:item['music'],width:'250px'});
- });
- }
- });
- //监听状态开关操作
- form.on('switch(OnOff)', function (obj) {
- var num = '';
- obj.elem.checked == true? num = 1: num = 2;
- //用户状态
- wk.status(this.value,num, '{:url("user_state")}',obj);
- });
- //事件
- var active = {
- getCheckData: function(){
- //批量删除
- wk.batchDel(getIds(),"{:url('batchDelUser')}");
- }
- ,forbiddenAll: function(){
- //批量禁用
- wk.batchForbidden(getIds(),2,"{:url('forbiddenAdmin')}");
- }
- ,usingAll: function(){
- //批量启用
- wk.usingAll(getIds(),1,"{:url('usingAdmin')}");
- }
- ,excelAll: function(){
- //导出Excel
- wk.excelAll(getIds(),$("form").serialize(),"{:url('excelAdmin')}");
- }
- };
- $('.layuiBtn').on('click', function () {
- var type = $(this).data('type');
- active[type] ? active[type].call(this) : '';
- });
- var getIds = function () {
- var ids = [];
- var checkStatus = table.checkStatus('LAY-table')
- ,data = checkStatus.data;
- $.each(data,function(index,item){
- ids.push(item['id'])
- });
- return ids;
- }
- //倒计时
- // var thisTimer, setCountdown = function(){
- // lay('#test3').addClass('layui-disabled').attr('disabled').text('完了');
- // var endTime = new Date(new Date().getFullYear(),new Date().getMonth(),new Date().getDate(),new Date().getHours(),new Date().getMinutes(),new Date().getSeconds() + 60).getTime() //结束日期
- // ,serverTime = new Date().getTime(); //假设为当前服务器时间,这里采用的是本地时间,实际使用一般是取服务端的
- // clearTimeout(thisTimer);
- // util.countdown(endTime, serverTime, function(date, serverTime, timer){
- // var str = date[3] + '秒';
- // if(date[3] == 0){
- // lay('#test3').removeClass('layui-disabled').removeAttr('disabled').text('完了');
- // }else{
- // lay('#test2').html(str);
- // }
- // thisTimer = timer;
- // });
- // };
- // var date = new Date();
- // setCountdown(date.getFullYear(),date.getMonth(),date.getDate(),date.getHours(),date.getMinutes(),date.getSeconds() + 60);
- });
- var thisTimer, setCountdown = function(){
- $('#test3').addClass('layui-disabled').attr('disabled','disabled');
- var endTime = new Date(new Date().getFullYear(),new Date().getMonth(),new Date().getDate(),new Date().getHours(),new Date().getMinutes(),new Date().getSeconds() + 60).getTime() //结束日期
- ,serverTime = new Date().getTime(); //假设为当前服务器时间,这里采用的是本地时间,实际使用一般是取服务端的
- clearTimeout(thisTimer);
- layui.util.countdown(endTime, serverTime, function(date, serverTime, timer){
- var str = date[3];
- if(date[3] == 0){
- $('#test3').removeClass('layui-disabled').removeAttr('disabled');
- $('#test2').html(60);
- }else{
- $('#test2').html(str);
- }
- thisTimer = timer;
- });
- };
- </script>
- </body>
- </html>
|