心理咨询网
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

database.html 4.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. {include file='common/head.html'}
  2. <div class="layui-body">
  3. <div class="layui-tab layui-tab-brief" lay-filter="tab">
  4. <ul class="layui-tab-title">
  5. <li class="layui-this" lay-id="t1">数据库管理</li>
  6. </ul>
  7. <div class="layui-tab-content">
  8. <div class="layui-tab-item layui-show">
  9. <form action="{url./admin/Database/mod}" method="post">
  10. <input type="hidden" name="formcheck" value="{$formcheck}" >
  11. {if([$db]=='mysql')}
  12. <table class="layui-table">
  13. <thead>
  14. <tr>
  15. <th>选择</th>
  16. <th>表名称</th>
  17. <th>表引擎</th>
  18. <th>编码</th>
  19. <th>版本</th>
  20. <th>行数</th>
  21. <th>表创建时间</th>
  22. <th>最后更新时间</th>
  23. <th>大小</th>
  24. <th>多余</th>
  25. </tr>
  26. </thead>
  27. {php}$sum1 = 0; $sum2 = 0;{/php}
  28. <tbody>
  29. {foreach $tables(key,value,num)}
  30. <tr>
  31. <td><input type="checkbox" class="checkbox checkitem" name="list[]" value="[value->Name]"></td>
  32. <td>[value->Name]</td>
  33. <td>[value->Engine]</td>
  34. <td>[value->Collation]</td>
  35. <td>[value->Version]</td>
  36. <td>[value->Rows]</td>
  37. <td>[value->Create_time]</td>
  38. <td>[value->Update_time]</td>
  39. {php}
  40. $size = round(($value->Data_length + $value->Index_length)/1024,2);
  41. $sum1 += $size;
  42. {/php}
  43. <td>{php}echo $size{/php} KB</td>
  44. <td>
  45. {if($value->Data_free)}
  46. {php}
  47. $free = round($value->Data_free/1024,2);
  48. echo $free.' KB';
  49. $sum2 += $free;
  50. {/php}
  51. {else}
  52. -
  53. {/if}
  54. </td>
  55. </tr>
  56. {/foreach}
  57. <tr>
  58. <td><input type="checkbox" class="checkbox" id="checkall" title="全选"></td>
  59. <td>[num] 张表</td>
  60. <td></td>
  61. <td></td>
  62. <td></td>
  63. <td></td>
  64. <td></td>
  65. <td>总计:</td>
  66. <td>{php}echo $sum1{/php} KB</td>
  67. <td>{php}echo $sum2?:0{/php} KB</td>
  68. </tr>
  69. </tbody>
  70. </table>
  71. {if([fun=check_level('mod')])}
  72. <button class="layui-btn" lay-submit type="submit" name="submit" value="yh">优化</button>
  73. <button class="layui-btn" lay-submit type="submit" name="submit" value="xf">修复</button>
  74. <button class="layui-btn" lay-submit type="submit" name="submit" value="bf">备份表</button>
  75. <button class="layui-btn" lay-submit type="submit" name="submit" value="bfdb">备份数据库</button>
  76. {/if}
  77. {/if}
  78. {if([$db]=='sqlite')}
  79. <button class="layui-btn" lay-submit type="submit" name="submit" value="bfsqlite" >备份</button>
  80. <p class="layui-text">注意:Sqlite数据库只支持直接备份。</p>
  81. {/if}
  82. </form>
  83. </div>
  84. </div>
  85. </div>
  86. </div>
  87. {include file='common/foot.html'}