index.html 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  1. {include file="public/header" /}
  2. <body>
  3. <div class="layui-fluid">
  4. <div class="layui-card">
  5. <div class="layui-form layui-card-header layuiadmin-card-header-auto">
  6. <button class="layui-btn layuiBtn" data-type="backups" id="export">
  7. <i class="fa fa-refresh"></i> 立即备份
  8. </button>
  9. <button class="layui-btn layui-btn-info layuiBtn" data-type="optimize">
  10. <i class="fa fa-line-chart"></i> 优化表
  11. </button>
  12. <button class="layui-btn layui-btn-normal layuiBtn" data-type="repair" >
  13. <i class="fa fa-wrench"></i> 修复表
  14. </button>
  15. </div>
  16. <div class="layui-card-body">
  17. <table id="LAY-table-manage" lay-filter="LAY-table-manage"></table>
  18. <!--操作模板-->
  19. <script type="text/html" id="opeBar">
  20. <a class="layui-btn layui-btn-info layui-btn-xs" title="优化表" onclick="together('{:url('optimize')}','{{d.name}}')" ><i class="fa fa-line-chart"></i></a>
  21. <a class="layui-btn layui-btn-normal layui-btn-xs" title="修复表" onclick="together('{:url('repair')}','{{d.name}}')" ><i class="fa fa-wrench"></i></a>
  22. </script>
  23. </div>
  24. </div>
  25. </div>
  26. {include file="public/footer" /}
  27. <script>
  28. layui.use(['index', 'table'], function () {
  29. var $ = layui.$
  30. , form = layui.form
  31. , table = layui.table
  32. table.render({
  33. elem: '#LAY-table-manage'
  34. , url: '{:url("Data/index")}'
  35. ,response: {
  36. statusCode: 220 //成功的状态码,默认:0
  37. }
  38. , page: false
  39. , even: false //开启隔行背景
  40. , size: 'lg' //sm小尺寸的表格 lg大尺寸
  41. // ,width:100
  42. , cellMinWidth: 150
  43. , limits: [5, 10, 15, 20, 25, 30]
  44. , limit: "{:config('pages')}"
  45. , loading: true
  46. , id: 'LAY-table'
  47. , cols: [[
  48. {type: 'checkbox', fixed: 'left',LAY_CHECKED:true}
  49. , {field: 'name', width: '', title: '表名',align: 'center'}
  50. , {field: 'comment', width: '', title: '注释', align: 'center'}
  51. , {field: 'engine', width: 90, title: '引擎', align: 'center'}
  52. , {field: 'rows', width: '', title: '数据量', align: 'center',templet:'<div>【{{d.rows}}】条记录</div>'}
  53. , {field: 'data_length', width: '', title: '数据大小',align: 'center'}
  54. , {field: 'create_time', width: '', title: '创建时间', align: 'center',templet:"<div>{{d.create_time?layui.util.toDateString(d.create_time,'yyyy-MM-dd HH:MM'):''}}</div>"}
  55. , {width: '', title: '状态', align: 'center',templet:"<div><span class='layui-badge layui-bg-orange' id='backup_{{d.name}}'>等待备份...</span></div>"}
  56. , {fixed: 'right', width: 100, title: '操作', align: 'center', toolbar: '#opeBar'}
  57. ]]
  58. });
  59. //事件
  60. var active = {
  61. //备份数据库
  62. backups: function() {
  63. var $export = $('#export');
  64. $('.layui-btn').addClass('layui-disabled').attr('disabled','disabled');
  65. $export.html("正在发送备份请求...");
  66. $.post("{:url('export')}",{ids:getIds()},function (data) {
  67. if (data.code) {
  68. tables = data.data.tables;
  69. $export.html(data.msg + "开始备份,请不要关闭本页面!");
  70. backup(data.data.tab);
  71. window.onbeforeunload = function () {
  72. return "正在备份数据库,请不要关闭!";
  73. };
  74. } else {
  75. if (data.code == 100) {
  76. wk.error(data.msg, 2, '');
  77. }
  78. $export.html("立即备份");
  79. setTimeout(function () {
  80. $('.layui-btn').removeClass('layui-disabled').removeAttr('disabled');
  81. }, 1500);
  82. }
  83. });
  84. }
  85. //优化表
  86. ,optimize:function(){
  87. together("{:url('optimize')}",getIds());
  88. }
  89. //修复表
  90. ,repair:function(){
  91. together("{:url('repair')}",getIds());
  92. }
  93. };
  94. $('.layuiBtn').on('click', function () {
  95. var type = $(this).data('type');
  96. active[type] ? active[type].call(this) : '';
  97. });
  98. //获取选中目标
  99. var getIds = function () {
  100. var ids = [];
  101. var checkStatus = table.checkStatus('LAY-table')
  102. ,data = checkStatus.data;
  103. $.each(data,function(index,item){
  104. ids.push(item['name'])
  105. });
  106. return ids;
  107. }
  108. //开始备份
  109. var backup = function(tab, status) {
  110. var $export = $('#export');
  111. status && showmsg(tab.id, "开始备份...(0%)");
  112. $.get("{:url('export')}", tab, function (data) {
  113. if (data.code) {
  114. showmsg(tab.id, data.msg);
  115. if (!$.isPlainObject(data.data.tab)) {
  116. $('.layui-btn').removeClass('layui-disabled').removeAttr('disabled');
  117. $export.html("备份完成,点击重新备份");
  118. window.onbeforeunload = function () {
  119. return null;
  120. };
  121. return;
  122. }
  123. backup(data.data.tab, tab.id != data.data.tab.id);
  124. } else {
  125. if(data.code == 100){
  126. wk.error(data.msg,2,'');
  127. }
  128. $export.html("立即备份");
  129. setTimeout(function () {
  130. $('.layui-btn').removeClass('layui-disabled').removeAttr('disabled');
  131. }, 1500);
  132. }
  133. });
  134. }
  135. var showmsg = function(id, msg) {
  136. var w = $('#backup_'+tables[id]);
  137. w.removeClass('layui-bg-green').addClass('layui-bg-orange');
  138. if(msg == '备份完成!'){
  139. w.removeClass('layui-bg-orange').addClass('layui-bg-green');
  140. }
  141. w.html(msg);
  142. // w.css('color','#1BB394');
  143. }
  144. });
  145. //优化表&修复表
  146. var together = function(url,data){
  147. $.ajax({
  148. url:url,
  149. data:"ids="+data,
  150. type:'post',
  151. dataType:'json',
  152. success:function(res){
  153. if(res.code == 200){
  154. wk.success(res.msg,1,'');
  155. } else if (res.code == 100){
  156. wk.error(res.msg,2,'');
  157. }
  158. }
  159. })
  160. }
  161. </script>
  162. </body>
  163. </html>