国内流行的内容管理系统(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.

54 lines
1.9KB

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