123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121 |
- {include file='common/header' /}
- <style>#repair{ margin-left: 10px;}</style>
- <div class="LM-container">
- <div class="LM-main">
- <fieldset class="layui-elem-field LM-search layui-field-title">
- <legend>数据库{:lang('list')}</legend>
- </fieldset>
- <blockquote class="layui-elem-quote">
- 数据库中共有<i class="count"></i> 张表,共计<i class="size"></i>
- <a href="javascript:void(0)" id="repair" class="layui-btn layui-btn-sm layui-btn-warm">修复</a>
- <a href="javascript:void(0)" id="optimize" class="layui-btn layui-btn-sm layui-btn-normal">优化</a>
- <a href="javascript:void(0)" id="backUp" class="layui-btn layui-btn-sm">备份</a>
- </blockquote>
- <table class="layui-hide" id="list" lay-filter="list"></table>
- </div>
- </div>
- {include file='common/footer' /}
- <script type="text/html" id="size">
- {{d.size}}
- </script>
- <script>
- layui.use(['form', 'table'], function () {
- var $ = layui.jquery,
- form = layui.form,
- table = layui.table;
- table.render({
- elem: '#list',
- url: '{:url("index")}',
- method: 'post',
- cols: [[
- {checkbox: true, fixed: true},
- {field: 'name', title: '数据库表', width: 150, fixed: true, sort: true},
- {field: 'rows', title: '记录条数', width: 150, sort: true},
- {field: 'size', title: '大小', width: 150, templet: '#size', sort: true},
- {field: 'engine', title: '类型', width: 110, sort: true},
- {field: 'collation', title: '编码', width: 150, sort: true},
- {field: 'create_time', title: '创建时间', width: 180, sort: true},
- {field: 'comment', title: '说明', width: 180},
- ]],
- done: function(res, curr, count){
- $('.count').html(res.tableNum);
- $('.size').html(res.total);
- },
- //
- limits: [10, 15, 20, 25, 50, 100],
- limit: 50,
- page: true
- });
- $('#backUp').click(function(){
- var obj = $(this);
- var checkStatus = table.checkStatus('list'); //test即为参数id设定的值
- var a = [];
- $(checkStatus.data).each(function(i,o){
- a.push(o.name);
- });
- obj.addClass('layui-btn-disabled');
- obj.html('备份进行中...');
- $.post("{:url('database/backup')}",{tables:a},function(data){
- if(data.code==1){
- layer.msg(data.msg,{time:1000,icon:1},function(){
- tableIn.reload();
- });
- }else{
- layer.msg(data.msg,{time:1000,icon:2});
- }
- obj.removeClass('layui-btn-disabled');
- obj.html('备份');
- });
- });
- $('#optimize').click(function(){
- var obj = $(this);
- var checkStatus = table.checkStatus('list'); //test即为参数id设定的值
- var a = [];
- $(checkStatus.data).each(function(i,o){
- a.push(o.name);
- });
- obj.addClass('layui-btn-disabled');
- obj.html('优化进行中...');
- $.post("{:url('database/optimize')}",{tables:a},function(data){
- if(data.code==1){
- layer.msg(data.msg,{time:1000,icon:1},function(){
- tableIn.reload();
- });
- }else{
- layer.msg(data.msg,{time:1000,icon:2});
- }
- obj.removeClass('layui-btn-disabled');
- obj.html('优化');
- });
- });
- $('#repair').click(function(){
- var obj = $(this);
- var checkStatus = table.checkStatus('list'); //test即为参数id设定的值
- var a = [];
- $(checkStatus.data).each(function(i,o){
- a.push(o.name);
- });
- obj.addClass('layui-btn-disabled');
- obj.html('修复进行中...');
- $.post("{:url('database/repair')}",{tables:a},function(data){
- if(data.code==1){
- layer.msg(data.msg,{time:1000,icon:1},function(){
- tableIn.reload();
- });
- }else{
- layer.msg(data.msg,{time:1000,icon:2});
- }
- obj.removeClass('layui-btn-disabled');
- obj.html('修复');
- });
- })
- })
- </script>
|