国内流行的内容管理系统(CMS)多端全媒体解决方案 https://www.dedebiz.com
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

119 行
5.0KB

  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="content_batchup_action.php" method="post" target="stafrm">
  25. <input type="hidden" name="dopost" value="go">
  26. <div class="table-responsive">
  27. <table class="table table-borderless">
  28. <tbody>
  29. <tr>
  30. <td width="260">选定栏目</td>
  31. <td>
  32. <?php
  33. $tl = new TypeLink(0);
  34. $typeOptions = $tl->GetOptionArray(0,$admin_catalogs,0,1);
  35. echo "<select name='typeid' class='admin-input-sm'>";
  36. echo "<option value='0' selected>不限栏目</option>";
  37. echo $typeOptions;
  38. echo "</select>";
  39. ?>
  40. </td>
  41. </tr>
  42. <tr>
  43. <td>会员登录id</td>
  44. <td><input name="userid" type="text" id="userid" class="admin-input-sm">(网址uid=后面跟的id)</td>
  45. </tr>
  46. <tr>
  47. <td>文档id</td>
  48. <td>
  49. <label>开始:<input name="startid" type="text" id="startid" class="admin-input-sm"></label>
  50. <label>结束:<input name="endid" type="text" id="endid" class="admin-input-sm"></label>
  51. </td>
  52. </tr>
  53. <tr>
  54. <td>文档发布时间</td>
  55. <td>
  56. <label>开始<?php $nowtime = GetDateTimeMk(time()-(24*3600*30));?>:<input type="text" name="starttime" id="starttime" class="datepicker admin-input-sm" value="<?php echo $nowtime;?>"></label>
  57. <label>结束<?php $nowtime = GetDateTimeMk(time());?>:<input type="text" name="endtime" id="endtime" class="datepicker admin-input-sm" value="<?php echo $nowtime;?>"></label>
  58. <label><input type="checkbox" name="seltime" id="seltime" value="1"> 启用时间筛选(移动或删除文档可用该选项)</label>
  59. </td>
  60. </tr>
  61. <tr>
  62. <td>文档操作</td>
  63. <td>
  64. <label><input type="radio" name="action" value="check" checked> 审核文档</label>
  65. <label><input type="radio" name="action" value="makehtml"> 更新网页</label>
  66. <label><input type="radio" name="action" value="move"> 移动文档</label>
  67. <label><input type="radio" name="action" value="del"> 删除文档</label>
  68. <label><input type="radio" name="action" value="delnulltitle"> 删除空标题文档</label>
  69. <label><input type="radio" name="action" value="delnullbody"> 删除空内容文档</label>
  70. <label><input type="radio" name="action" value="modddpic"> 更正缩图错误</label>
  71. </td>
  72. </tr>
  73. <tr>
  74. <td colspan="2" align="center"><button type="submit" class="btn btn-success btn-sm">开始执行</button></td>
  75. </tr>
  76. <tr>
  77. <td colspan="2">
  78. <div class="admin-win-iframe"><iframe name="stafrm" id="stafrm" frameborder="0" width="100%" height="100%"></iframe></div>
  79. </td>
  80. </tr>
  81. </tbody>
  82. </table>
  83. </div>
  84. </form>
  85. </div>
  86. </div>
  87. </div>
  88. <script>
  89. $(document).ready(function() {
  90. $('.datepicker').daterangepicker({
  91. "singleDatePicker": true,
  92. "autoApply": true,
  93. "showDropdowns": true,
  94. "linkedCalendars": false,
  95. "timePicker": true,
  96. "timePicker24Hour": true,
  97. "timePickerSeconds": true,
  98. "showCustomRangeLabel": false,
  99. ranges: {
  100. '今日': [moment(), moment()],
  101. '昨日': [moment().subtract(1, 'days'), moment().subtract(1, 'days')],
  102. '本月': [moment().startOf('month'), moment().startOf('month')],
  103. '上月': [moment().subtract(1, 'month').startOf('month'), moment().subtract(1, 'month').startOf('month')]
  104. },
  105. "locale": {
  106. format: 'YYYY-MM-DD HH:mm:ss',
  107. applyLabel: '确定',
  108. cancelLabel: '取消',
  109. daysOfWeek: ['日', '一', '二', '三', '四', '五', '六'],
  110. monthNames: ['一月', '二月', '三月', '四月', '五月', '六月', '七月', '八月', '九月', '十月', '十一月', '十二月'],
  111. firstDay: 1
  112. }
  113. }, function(start) {
  114. $(this).val(start.format("YYYY-MM-DD HH:mm:ss"));
  115. });
  116. });
  117. </script>
  118. </body>
  119. </html>