国内流行的内容管理系统(CMS)多端全媒体解决方案 https://www.dedebiz.com
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.

53 line
2.1KB

  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=<?php echo $cfg_soft_lang; ?>">
  5. <title>自动更新程序 - 下载更新文件</title>
  6. <link rel="stylesheet" href="../static/web/css/admin.css">
  7. </head>
  8. <body>
  9. <table width="98%" border="0" cellpadding="3" cellspacing="1" align="center">
  10. <tr>
  11. <td height="26" colspan="2" background="../static/web/img/tbg.gif">
  12. <div style="float:left">自动更新程序::下载更新文件</div>
  13. <div style="float:right;padding-right:10px">
  14. <a href='index_body.php' class='np coolbg'>返回系统主页</a>
  15. </div>
  16. </td>
  17. </tr>
  18. <tr bgcolor="#ffffff">
  19. <td height="26" colspan="2">下载的文件临时存放在文件夹(<span style='color:#dc3545'>../data/<?php echo $tmpdir; ?></span>)内,如果某些基础类有重要的改动导致更新中途中错,您可以从这文件夹提取文件手工更新</td>
  20. </tr>
  21. <?php echo $dirinfos; ?>
  22. <tr bgcolor="#F8FEDA">
  23. <td height="26" colspan="2">
  24. <table width="100%">
  25. <tr>
  26. <td width="70%">进行状态:</td>
  27. <td width="30%" align="right">
  28. <script language='javascript'>
  29. function ResizeDiv(obj,ty) {
  30. if(ty=="+") document.all[obj].style.pixelHeight += 50;
  31. else if(document.all[obj].style.pixelHeight>80) document.all[obj].style.pixelHeight = document.all[obj].style.pixelHeight - 50;
  32. }
  33. </script>
  34. <a href="javascript:;" onClick="ResizeDiv('mdv','+');" class="btn btn-success btn-sm">增大</a>
  35. <a href="javascript:;" onClick="ResizeDiv('mdv','-');" class="btn btn-success btn-sm">缩小</a>
  36. </td>
  37. </tr>
  38. </table>
  39. </td>
  40. </tr>
  41. <tr bgcolor="#ffffff">
  42. <td colspan="2" id="mtd">
  43. <div id="mdv" style="width:100%;height:300px">
  44. <?php
  45. echo $doneStr;
  46. ?>
  47. </div>
  48. </td>
  49. </tr>
  50. </table>
  51. </body>
  52. </html>