国内流行的内容管理系统(CMS)多端全媒体解决方案 https://www.dedebiz.com
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

107 行
4.1KB

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no">
  6. <title>更新整站</title>
  7. <link rel="stylesheet" href="/static/web/css/font-awesome.min.css">
  8. <link rel="stylesheet" href="/static/web/css/bootstrap.min.css">
  9. <link rel="stylesheet" href="/static/web/css/admin.css">
  10. <link rel="stylesheet" href="/static/web/css/daterangepicker.css">
  11. <script src="/static/web/js/jquery.min.js"></script>
  12. <script src="/static/web/js/moment.min.js"></script>
  13. <script src="/static/web/js/daterangepicker.js"></script>
  14. </head>
  15. <body>
  16. <div class="container-fluid">
  17. <ol class="breadcrumb">
  18. <li class="breadcrumb-item"><a href="index_body.php">后台面板</a></li>
  19. <li class="breadcrumb-item active">更新整站</li>
  20. </ol>
  21. <div class="card shadow-sm">
  22. <div class="card-header">更新整站</div>
  23. <div class="card-body">
  24. <form name="form1" action="makehtml_all.php" method="post" target="stafrm">
  25. <input type="hidden" name="action" value="make">
  26. <div class="table-responsive">
  27. <table class="table table-borderless">
  28. <tbody>
  29. <tr>
  30. <td width="260">更新选项</td>
  31. <td>
  32. <label><input type="radio" name="uptype" id="uptype1" onclick="SelUp();" value="time" checked> 指定时间的所有更新</label>
  33. <label><input type="radio" name="uptype" id="uptype2" onclick="SelUp();" value="id"> 指定文档的所有更新</label>
  34. <label><input type="radio" name="uptype" id="uptype3" onclick="SelUp();" value="mkall"> 更新所有</label>
  35. </td>
  36. </tr>
  37. <tr id="seltime">
  38. <td>起始时间</td>
  39. <td><input type="text" name="starttime" id="starttime" value="<?php echo GetDateMk(time());?>" class="datepicker admin-input-sm"></td>
  40. </tr>
  41. <tr id="selid" style="display:none">
  42. <td>起始id</td>
  43. <td><input type="text" name="startid" id="startid" value="0" class="admin-input-sm"></td>
  44. </tr>
  45. <tr>
  46. <td colspan="2" align="center"><button type="submit" class="btn btn-success btn-sm">开始执行</button></td>
  47. </tr>
  48. <tr>
  49. <td colspan="2">
  50. <div class="admin-win-iframe"><iframe name="stafrm" frameborder="0" id="stafrm" width="100%" height="100%"></iframe></div>
  51. </td>
  52. </tr>
  53. </tbody>
  54. </table>
  55. </div>
  56. </form>
  57. </div>
  58. </div>
  59. </div>
  60. <script>
  61. function SelUp() {
  62. var ob1 = document.getElementById("uptype1");
  63. var ob2 = document.getElementById("uptype2");
  64. var ob3 = document.getElementById("uptype3");
  65. if (ob1.checked) {
  66. document.getElementById("seltime").style.display = '';
  67. document.getElementById("selid").style.display = "none";
  68. } else if (ob2.checked) {
  69. document.getElementById("seltime").style.display = "none";
  70. document.getElementById("selid").style.display = '';
  71. } else {
  72. document.getElementById("seltime").style.display = "none";
  73. document.getElementById("selid").style.display = "none";
  74. }
  75. }
  76. $(document).ready(function() {
  77. $('.datepicker').daterangepicker({
  78. "singleDatePicker": true,
  79. "autoApply": true,
  80. "showDropdowns": true,
  81. "linkedCalendars": false,
  82. "timePicker": true,
  83. "timePicker24Hour": true,
  84. "showCustomRangeLabel": false,
  85. ranges: {
  86. '今日': [moment(), moment()],
  87. '昨日': [moment().subtract(1, 'days'), moment().subtract(1, 'days')],
  88. '本月': [moment().startOf('month'), moment().startOf('month')],
  89. '上月': [moment().subtract(1, 'month').startOf('month'), moment().subtract(1, 'month')
  90. .startOf('month')
  91. ]
  92. },
  93. "locale": {
  94. format: 'YYYY-MM-DD HH:mm',
  95. applyLabel: '确定',
  96. cancelLabel: '取消',
  97. daysOfWeek: ['日', '一', '二', '三', '四', '五', '六'],
  98. monthNames: ['一月', '二月', '三月', '四月', '五月', '六月', '七月', '八月', '九月', '十月', '十一月', '十二月'],
  99. firstDay: 1
  100. }
  101. }, function(start) {
  102. $(this).val(start.format("YYYY-MM-DD HH:mm"));
  103. });
  104. });
  105. </script>
  106. </body>
  107. </html>