|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1">
- <title>数据备份还原</title>
- <link rel="stylesheet" href="../static/web/font/css/font-awesome.min.css">
- <link rel="stylesheet" href="../static/web/css/bootstrap.min.css">
- <link rel="stylesheet" href="../static/web/css/admin.css">
- <script src="../static/web/js/jquery.min.js"></script>
- <script src="../static/web/js/bootstrap.min.js"></script>
- <script src="../static/web/js/webajax.js"></script>
- <script src="js/main.js"></script>
- <script>
- var posLeft = 200;
- var posTop = 150;
- function LoadUrl(surl) {
- fetch("sys_data.php?" + surl).then(resp => {
- if (resp.ok) {
- return resp.text()
- }
- throw new Error('x');
- }).then((d) => {
- ShowMsg(d, {
- size: "modal-lg"
- });
- }).catch((error) => {
- ShowMsg("操作失败");
- });
- }
- //获得选中文件的数据表
- function getCheckboxItem() {
- var myform = document.form1;
- var allSel = "";
- if (myform.tables.value) return myform.tables.value;
- for (i = 0; i < myform.tables.length; i++) {
- if (myform.tables[i].checked) {
- if (allSel == "")
- allSel = myform.tables[i].value;
- else
- allSel = allSel + "," + myform.tables[i].value;
- }
- }
- return allSel;
- }
- //反选
- function ReSel() {
- var myform = document.form1;
- for (i = 0; i < myform.tables.length; i++) {
- if (myform.tables[i].checked) myform.tables[i].checked = false;
- else myform.tables[i].checked = true;
- }
- }
- //全选
- function SelAll() {
- var myform = document.form1;
- for (i = 0; i < myform.tables.length; i++) {
- myform.tables[i].checked = true;
- }
- }
- //取消
- function NoneSel() {
- var myform = document.form1;
- for (i = 0; i < myform.tables.length; i++) {
- myform.tables[i].checked = false;
- }
- }
- function checkSubmit() {
- var myform = document.form1;
- myform.tablearr.value = getCheckboxItem();
- return true;
- }
- </script>
- </head>
- <body>
- <table cellpadding="3" cellspacing="1" align="center" class="table maintable my-3">
- <tr>
- <td>
- <a href="sys_data_revert.php" class="btn btn-success btn-sm">数据还原</a>
- <a href="sys_sql_query.php" class="btn btn-success btn-sm">SQL命令工具</a>
- </td>
- </tr>
- </table>
- <form name="form1" onSubmit="checkSubmit()" action="sys_data_done.php?dopost=bak" method="post" target="stafrm">
- <input type="hidden" name="tablearr" value="">
- <table cellpadding="3" cellspacing="1" align="center" class="table maintable my-3">
- <tr>
- <td bgcolor="#f5f5f5" colspan="8">数据备份</td>
- </tr>
- <tr>
- <td colspan="8">系统默认表:</td>
- </tr>
- <tr bgcolor="#e9ecef" align="center">
- <td width="5%">选择</td>
- <td width="20%">表名</td>
- <td width="6%">记录数</td>
- <td width="16%">操作</td>
- <td width="5%">选择</td>
- <td width="20%">表名</td>
- <td width="6%">记录数</td>
- <td width="16%">操作</td>
- </tr>
- <?php
- for ($i=0; isset($dedeSysTables[$i]); $i++)
- {
- $t = $dedeSysTables[$i];
- echo "<tr align='center'>";
- ?>
- <td><input type="checkbox" name="tables" value="<?php echo $t;?>" checked></td>
- <td><?php echo $t;?></td>
- <td><?php echo TjCount($t,$dsql);?></td>
- <td>
- <a href="javascript:;" onclick="LoadUrl('dopost=opimize&tablename=<?php echo $t;?>');" class="btn btn-light btn-sm">优化</a>
- <a href="javascript:;" onclick="LoadUrl('dopost=repair&tablename=<?php echo $t;?>');" class="btn btn-light btn-sm">修复</a>
- <a href="javascript:;" onclick="LoadUrl('dopost=viewinfo&tablename=<?php echo $t;?>');" class="btn btn-light btn-sm">结构</a>
- </td>
- <?php
- $i++;
- if (isset($dedeSysTables[$i])) {
- $t = $dedeSysTables[$i];
- ?>
- <td><input type="checkbox" name="tables" value="<?php echo $t;?>" checked></td>
- <td><?php echo $t;?></td>
- <td><?php echo TjCount($t,$dsql);?></td>
- <td>
- <a href="javascript:;" onclick="LoadUrl('dopost=opimize&tablename=<?php echo $t;?>');" class="btn btn-light btn-sm">优化</a>
- <a href="javascript:;" onclick="LoadUrl('dopost=repair&tablename=<?php echo $t;?>');" class="btn btn-light btn-sm">修复</a>
- <a href="javascript:;" onclick="LoadUrl('dopost=viewinfo&tablename=<?php echo $t;?>');" class="btn btn-light btn-sm">结构</a>
- </td>
- <?php
- } else {
- echo "<td></td><td></td><td></td><td></td>";
- }
- echo "</tr>";
- }
- ?>
- <tr>
- <td colspan="8">其它数据表:</td>
- </tr>
- <tr bgcolor="#e9ecef" align="center">
- <td width="6%">选择</td>
- <td width="20%">表名</td>
- <td width="6%">记录数</td>
- <td width="16%">操作</td>
- <td width="6%">选择</td>
- <td width="20%">表名</td>
- <td width="6%">记录数</td>
- <td>操作</td>
- </tr>
- <?php
- for ($i=0; isset($otherTables[$i]); $i++)
- {
- $t = $otherTables[$i];
- echo "<tr align='center'>";
- ?>
- <td><input type="checkbox" name="tables" value="<?php echo $t;?>"></td>
- <td><?php echo $t;?></td>
- <td><?php echo TjCount($t,$dsql);?></td>
- <td>
- <a href="javascript:;" onclick="LoadUrl('dopost=opimize&tablename=<?php echo $t;?>');" class="btn btn-light btn-sm">优化</a>
- <a href="javascript:;" onclick="LoadUrl('dopost=repair&tablename=<?php echo $t;?>');" class="btn btn-light btn-sm">修复</a>
- <a href="javascript:;" onclick="LoadUrl('dopost=viewinfo&tablename=<?php echo $t;?>');" class="btn btn-light btn-sm">结构</a>
- </td>
- <?php
- $i++;
- if (isset($otherTables[$i])) {
- $t = $otherTables[$i];
- ?>
- <td><input type="checkbox" name="tables" value="<?php echo $t;?>"></td>
- <td><?php echo $t;?></td>
- <td><?php echo TjCount($t,$dsql);?></td>
- <td>
- <a href="javascript:;" onclick="LoadUrl('dopost=opimize&tablename=<?php echo $t;?>');" class="btn btn-light btn-sm">优化</a>
- <a href="javascript:;" onclick="LoadUrl('dopost=repair&tablename=<?php echo $t;?>');" class="btn btn-light btn-sm">修复</a>
- <a href="javascript:;" onclick="LoadUrl('dopost=viewinfo&tablename=<?php echo $t;?>');" class="btn btn-light btn-sm">结构</a>
- </td>
- <?php
- } else {
- echo "<td></td><td></td><td></td><td></td>";
- }
- echo "</tr>";
- }
- ?>
- <tr>
- <td colspan="8">
- 分卷大小:<input name="fsize" type="text" id="fsize" value="2048" class="admin-input-sm"> K
- <label><input type="checkbox" name="isstruct" id="isstruct" value="1" checked="1"> 备份结构</label>
- <?php if (@function_exists('gzcompress') && false) {?>
- <label><input type="checkbox" name="iszip" id="iszip" value="1" checked="1"> 完成后压缩成ZIP</label>
- <?php }?>
- <button name="b1" type="button" id="b1" class="btn btn-success btn-sm" onclick="SelAll()">全选</button>
- <button name="b2" type="button" id="b2" class="btn btn-success btn-sm" onclick="ReSel()">反选</button>
- <button name="b3" type="button" id="b3" class="btn btn-success btn-sm" onclick="NoneSel()">取消</button>
- <button type="submit" name="Submit" class="btn btn-success btn-sm">提交</button>
- </td>
- </tr>
- <tr>
- <td colspan="8">
- <div class="admin-win-iframe"><iframe name="stafrm" frameborder="0" id="stafrm" width="100%" height="100%"></iframe></div>
- </td>
- </tr>
- </table>
- </form>
- </body>
- </html>
|