Database_index.html 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <form id="myform" name="myform" method="post" action="">
  2. <div class="table-list">
  3. <table cellpadding=0 cellspacing=0 width="100%">
  4. <thead>
  5. <tr>
  6. <th style="width:4%">选择</th>
  7. <th align="left" style="width:20%">名称</th>
  8. <th align="left" style="width:15%">类型</th>
  9. <th align="left" style="width:15%">字符集</th>
  10. <th align="left" style="width:8%">记录数</th>
  11. <th align="left" style="width:8%">碎片</th>
  12. <th align="left" style="width:8%">大小</th>
  13. </tr>
  14. </thead>
  15. <tbody>
  16. <volist name="dataList" id="vo">
  17. <tr>
  18. <td><input type="checkbox" name="tables[]" value="{$vo.Name}" id="{$vo.Name}"> </td>
  19. <td>{$vo.Name}</td>
  20. <td>{$vo.Engine}</td>
  21. <td>{$vo.Collation}</td>
  22. <td>{$vo.Rows}</td>
  23. <td>{$vo.Data_free|byte_format}</td>
  24. <td>{$vo.Data_length|byte_format}</td>
  25. </tr>
  26. </volist>
  27. </tbody>
  28. </table>
  29. </div>
  30. <div class="btn">
  31. <input type="checkbox" value="" id="check_box" onclick="selectall('tables[]');">全选&nbsp;&nbsp;
  32. <input type="button" class="button" name="" value="修复" onclick="myform.action='{:U($module_name.'/docommand?do=repair')}';$('#myform').submit();" >
  33. <input type="button" class="button" name="" value="优化" onclick="myform.action='{:U($module_name.'/docommand?do=optimze')}';$('#myform').submit();">
  34. <input type="button" class="button" name="" value="检查" onclick="myform.action='{:U($module_name.'/docommand?do=check')}';$('#myform').submit();">
  35. <input type="button" class="button" name="" value="分析" onclick="myform.action='{:U($module_name.'/docommand?do=analyze')}';$('#myform').submit();" >
  36. <input type="button" class="button" name="" value="结构" onclick="myform.action='{:U($module_name.'/docommand?do=show')}';$('#myform').submit();">
  37. 分卷大小:<input type="text" name="sizelimit" value="2048" class="input-text" size=4>
  38. <input type="button" class="button" name="" value="执行备份" onclick="myform.action='{:U($module_name.'/backup')}';$('#myform').submit();">
  39. <span style="float:right;color:#FB0000">数据库大小:{$totalSize|byte_format}</span>
  40. </div>
  41. </form>