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

63 lines
2.4KB

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1">
  6. <title>自定义搜索管理</title>
  7. <link rel="stylesheet" href="../static/web/font/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. <script src="../static/web/js/jquery.min.js"></script>
  11. <script src="js/main.js"></script>
  12. </head>
  13. <body>
  14. <form name="form1" action="mychannel_edit.php" method="post" target="stafrm">
  15. <input type="hidden" name="mid" value="<?php echo $mid?>">
  16. <input type="hidden" name="maintable" value="<?php echo $channel['maintable']?>">
  17. <input type="hidden" name="addontable" value="<?php echo $channel['addtable'];?>">
  18. <input type="hidden" name="step" value="<?php echo $step?>">
  19. <input type="hidden" name="dopost" value="modifysearch">
  20. <table align="center" class="table maintable my-3">
  21. <tr>
  22. <td bgcolor="#f5f5f5" colspan="2"><a href="mychannel_main.php">文档模型管理</a> - 自定义搜索管理</td>
  23. </tr>
  24. <tr>
  25. <td width="260">栏目id:</td>
  26. <td><?php echo $mid;?></td>
  27. </tr>
  28. <tr>
  29. <td>栏目名称:</td>
  30. <td><?php echo $channel['typename']?></td>
  31. </tr>
  32. <?php if ($channel['issystem'] >= 0) {?>
  33. <tr>
  34. <td>主表可供自定义搜索的字段:</td>
  35. <td><?php echo $mainfields;?></td>
  36. </tr>
  37. <?php }?>
  38. <tr>
  39. <td>附件表可供自定义搜索的字段:</td>
  40. <td><?php echo $addonfields;?>(字段是程序依据字段类型自动选择生成)</td>
  41. </tr>
  42. <tr>
  43. <td>自定义搜索结果页模板:</td>
  44. <td>
  45. <input type="text" name="template" value="<?php echo $template;?>" class="admin-input-lg">
  46. <span>(填写文件名,且文件必须在theme/apps目录)</span>
  47. </td>
  48. </tr>
  49. <tr>
  50. <td align="center" bgcolor="#e9ecef" colspan="2">
  51. <button type="submit" class="btn btn-success btn-sm">保存</button>
  52. <button type="button" class="btn btn-outline-success btn-sm" onclick="location='mychannel_main.php';">返回</button>
  53. </td>
  54. </tr>
  55. <tr>
  56. <td colspan="2" id="mtd">
  57. <div id="mdv" class="admin-win-iframe"><iframe name="stafrm" frameborder="0" id="stafrm" width="100%" height="100%"></iframe></div>
  58. </td>
  59. </tr>
  60. </table>
  61. </form>
  62. </body>
  63. </html>