|
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=<?php echo $cfg_soft_lang; ?>">
- <title>自动更新程序 - 下载更新文件</title>
- <link rel="stylesheet" href="../static/web/css/admin.css">
- </head>
- <body>
- <table width="98%" cellpadding="3" cellspacing="1" align="center">
- <tr>
- <td height="26" colspan="2" background="../static/web/img/tbg.gif">
- <div style="float:left">自动更新程序::下载更新文件</div>
- <div style="float:right;padding-right:10px">
- <a href='index_body.php' class='np coolbg'>返回系统主页</a>
- </div>
- </td>
- </tr>
- <tr>
- <td height="26" colspan="2">下载的文件临时存放在文件夹(<span style='color:#dc3545'>../data/<?php echo $tmpdir; ?></span>)内,如果某些基础类有重要的改动导致更新中途中错,您可以从这文件夹提取文件手工更新</td>
- </tr>
- <?php echo $dirinfos; ?>
- <tr bgcolor="#F8FEDA">
- <td height="26" colspan="2">
- <table width="100%">
- <tr>
- <td width="70%">结果:</td>
- <td width="30%" align="right">
- <script language='javascript'>
- function ResizeDiv(obj,ty) {
- if(ty=="+") document.all[obj].style.pixelHeight += 50;
- else if(document.all[obj].style.pixelHeight>80) document.all[obj].style.pixelHeight = document.all[obj].style.pixelHeight - 50;
- }
- </script>
- <a href="javascript:;" onClick="ResizeDiv('mdv','+');" class="btn btn-success btn-sm">增大</a>
- <a href="javascript:;" onClick="ResizeDiv('mdv','-');" class="btn btn-success btn-sm">缩小</a>
- </td>
- </tr>
- </table>
- </td>
- </tr>
- <tr>
- <td colspan="2" id="mtd">
- <div id="mdv" style="width:100%;height:300px">
- <?php
- echo $doneStr;
- ?>
- </div>
- </td>
- </tr>
- </table>
- </body>
- </html>
|