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

72 行
2.8KB

  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. <script src="/static/web/js/jquery.min.js"></script>
  11. <script src="/static/web/js/bootstrap.min.js"></script>
  12. <script src="/static/web/js/admin.main.js"></script>
  13. </head>
  14. <body>
  15. <ol class="breadcrumb">
  16. <li class="breadcrumb-item"><a href="index_body.php">后台面板</a></li>
  17. <li class="breadcrumb-item"><a href="mychannel_main.php">文档模型管理</a></li>
  18. <li class="breadcrumb-item active">自定义搜索管理</li>
  19. </ol>
  20. <div class="card shadow-sm">
  21. <div class="card-header">自定义搜索管理</div>
  22. <div class="card-body">
  23. <form name="form1" action="mychannel_edit.php" method="post" target="stafrm">
  24. <input type="hidden" name="mid" value="<?php echo $mid?>">
  25. <input type="hidden" name="maintable" value="<?php echo $channel['maintable']?>">
  26. <input type="hidden" name="addontable" value="<?php echo $channel['addtable'];?>">
  27. <input type="hidden" name="step" value="<?php echo $step?>">
  28. <input type="hidden" name="dopost" value="modifysearch">
  29. <div class="table-responsive">
  30. <table class="table table-borderless">
  31. <tbody>
  32. <tr>
  33. <td width="260">栏目id</td>
  34. <td><?php echo $mid;?></td>
  35. </tr>
  36. <tr>
  37. <td>栏目名称</td>
  38. <td><?php echo $channel['typename']?></td>
  39. </tr>
  40. <?php if ($channel['issystem'] >= 0) {?>
  41. <tr>
  42. <td>主表可供自定义搜索的字段</td>
  43. <td><?php echo $mainfields;?></td>
  44. </tr>
  45. <?php }?>
  46. <tr>
  47. <td>附件表可供自定义搜索的字段</td>
  48. <td><?php echo $addonfields;?>(字段是程序依据字段类型自动选择生成)</td>
  49. </tr>
  50. <tr>
  51. <td>自定义搜索结果页模板</td>
  52. <td><input type="text" name="template" value="<?php echo $template;?>" class="admin-input-lg">(填写文件名,且文件必须在theme/apps目录)</td>
  53. </tr>
  54. <tr>
  55. <td align="center" colspan="2">
  56. <button type="submit" class="btn btn-success btn-sm">保存</button>
  57. <button type="reset" class="btn btn-outline-success btn-sm">重置</button>
  58. </td>
  59. </tr>
  60. <tr>
  61. <td colspan="2">
  62. <div class="admin-win-iframe"><iframe name="stafrm" frameborder="0" id="stafrm" width="100%" height="100%"></iframe></div>
  63. </td>
  64. </tr>
  65. </tbody>
  66. </table>
  67. </div>
  68. </form>
  69. </div>
  70. </div>
  71. </body>
  72. </html>