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

78 lines
3.0KB

  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/bootstrap.min.css">
  7. <link rel="stylesheet" href="../static/web/font/css/font-awesome.min.css">
  8. <link rel="stylesheet" href="../static/web/css/admin.css">
  9. </head>
  10. <body>
  11. <table width="98%" cellpadding="1" cellspacing="1" align="center" class="table maintable mt-3 mb-3">
  12. <form action="article_test_same.php" name="form1" target="stafrm">
  13. <input type='hidden' name='dopost' value='analyse'>
  14. <tr>
  15. <td height="26" background="../static/web/img/tbg.gif">
  16. <table width="98%" cellpadding="0" cellspacing="0" class="table table-borderless">
  17. <tr>
  18. <td width="30%" style="padding-left:10px">重复文档检测</td>
  19. <td width="70%" align="right"></td>
  20. </tr>
  21. </table>
  22. </td>
  23. </tr>
  24. <tr>
  25. <td height="26" align="center">
  26. <table width="98%" align="center" cellpadding="0" cellspacing="0" class="table table-borderless">
  27. <tr>
  28. <td width="20%" height="26" align="left">频道类型:</td>
  29. <td align="left">
  30. <select name="channelid">
  31. <?php
  32. if(!empty($channelinfos))
  33. {
  34. foreach($channelinfos as $rs)
  35. {
  36. echo "<option value=".$rs['id'].">".$rs['typename']."</option>";
  37. }
  38. }
  39. ?>
  40. </select>
  41. </td>
  42. </tr>
  43. <tr>
  44. <td width="20%" height="26" align="left">删除选项:</td>
  45. <td align="left">
  46. <label><input name="deltype" type="radio" value="delnew" class='np' checked='1'>
  47. 保留最旧的一条</label>
  48. <label><input type="radio" name="deltype" value="delold" class='np'>
  49. 保留最新的一条</label>
  50. </td>
  51. </tr>
  52. <tr>
  53. <td height="26" align="left">每排列出记录:</td>
  54. <td align="left"><input name="pagesize" type="text" id="pagesize" value="100" size="10">
  55. 条</td>
  56. </tr>
  57. </table>
  58. </td>
  59. </tr>
  60. <tr>
  61. <td height="26" bgcolor="#F8FCF1" align="center">
  62. <button type="submit" name="Submit" class="btn btn-success btn-sm">分析标题重复的文档</button>
  63. </td>
  64. </tr>
  65. </form>
  66. <tr>
  67. <td height="26">结果:</td>
  68. </tr>
  69. <tr>
  70. <td id="mtd">
  71. <div id="mdv" style="width:100%;height:300px">
  72. <iframe name="stafrm" frameborder="0" id="stafrm" width="100%" height="100%"></iframe>
  73. </div>
  74. </td>
  75. </tr>
  76. </table>
  77. </body>
  78. </html>