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

68 lines
2.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/bootstrap.min.css">
  8. <link rel="stylesheet" href="../static/web/font/css/font-awesome.min.css">
  9. <link rel="stylesheet" href="../static/web/css/admin.css">
  10. </head>
  11. <body>
  12. <table width="98%" cellpadding="1" cellspacing="1" align="center" class="table maintable mt-3 mb-3">
  13. <form name="form1" action="makehtml_freelist_action.php" method="get" target='stafrm'>
  14. <tr>
  15. <td colspan="2" background="../static/web/img/tbg.gif">
  16. <table width="98%" cellpadding="0" cellspacing="0" class="table table-borderless">
  17. <tr>
  18. <td width="24%" style="padding-left:10px">更新自由列表</td>
  19. <td width="76%" align="right"><button type="button" name="b113" onClick="location='freelist_main.php';" class="btn btn-success btn-sm">管理自由列表</button>
  20. </td>
  21. </tr>
  22. </table>
  23. </td>
  24. </tr>
  25. <tr>
  26. <td height="26">&nbsp;&nbsp;起始ID:</td>
  27. <td height="26"><input name="startid" type="text" id="startid" size="10" <?php if(!empty($aid)) echo " value='$aid'"; ?>>(空或0表示从头开始)</td>
  28. </tr>
  29. <tr>
  30. <td height="26">&nbsp;&nbsp;结束ID:</td>
  31. <td height="26"><input name="endid" type="text" id="endid" size="10" <?php if(!empty($aid)) echo " value='$aid'"; ?>>(空或0表示直到结束ID)</td>
  32. </tr>
  33. <tr>
  34. <td height="26">&nbsp;&nbsp;每批生成:</td>
  35. <td height="26"><input name="pagesize" type="text" id="pagesize" value="100" size="8"> 个文件</td>
  36. </tr>
  37. <tr>
  38. <td height="26" bgcolor="#F8FCF1" colspan="2" align="center">
  39. <button type="button" onClick="document.form1.submit();" class="btn btn-success btn-sm">开始更新</button>
  40. </td>
  41. </tr>
  42. </form>
  43. <tr>
  44. <td width="30%">结果:</td>
  45. <td width="70%" align="right">
  46. <script>
  47. function ResizeDiv(obj, ty) {
  48. if (ty == "+") document.all[obj].style.pixelHeight += 50;
  49. else if (document.all[obj].style.pixelHeight > 80) document.all[obj].style.pixelHeight = document.all[obj].style.pixelHeight - 50;
  50. }
  51. </script>
  52. <a href="javascript:;" onClick="ResizeDiv('mdv','+');" class="btn btn-success btn-sm">增大</a>
  53. <a href="javascript:;" onClick="ResizeDiv('mdv','-');" class="btn btn-success btn-sm">缩小</a>
  54. </td>
  55. </tr>
  56. <tr>
  57. <td colspan="2" id="mtd">
  58. <div id="mdv" style="width:100%;height:360px">
  59. <iframe name="stafrm" frameborder="0" id="stafrm" width="100%" height="100%"></iframe>
  60. </div>
  61. <script>
  62. document.all.mdv.style.pixelHeight = screen.height - 360;
  63. </script>
  64. </td>
  65. </tr>
  66. </table>
  67. </body>
  68. </html>