Nessuna descrizione
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.

conf.htm 5.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. {include file="public/layout" /}
  2. <body class="bodystyle" style="overflow-y: scroll;min-width:auto;">
  3. <div id="toolTipLayer" style="position: absolute; z-index: 9999; display: none; visibility: visible; left: 95px; top: 573px;"></div>
  4. <div id="append_parent"></div>
  5. <div id="ajaxwaitid"></div>
  6. <div class="page min-hg-c-10">
  7. {include file="search/bar" /}
  8. <form class="form-horizontal" id="post_form" action="{:url('Search/conf')}" method="post">
  9. <div class="ncap-form-default">
  10. <dl class="row">
  11. <dt class="tit">
  12. <label>搜索模式</label>
  13. </dt>
  14. <dd class="opt" style="width: auto;">
  15. <label class="curpoin"><input type="radio" name="search_model" value="default" {if condition="empty($search.search_model) || 'default' == $search.search_model"} checked="checked" {/if} onclick="searchModel(this);" />标题分词</label>&nbsp;&nbsp;
  16. <br/>
  17. <label class="curpoin"><input type="radio" name="search_model" value="accurate" {if condition="!empty($search.search_model) && 'accurate' == $search.search_model"} checked="checked" {/if} onclick="searchModel(this);" />标题完全匹配</label>&nbsp;&nbsp;
  18. <br/>
  19. <label class="curpoin"><input type="radio" name="search_model" value="intellect" {if condition="!empty($search.search_model) && 'intellect' == $search.search_model"} checked="checked" {/if} onclick="searchModel(this);" />智能模糊(检索标题+seo关键词)</label>&nbsp;&nbsp;
  20. </dd>
  21. </dl>
  22. <dl class="row" id="dl_search_model_default" {if condition="!empty($search.search_model) && 'default' != $search.search_model"} style="display: none;" {/if}>
  23. <dt class="tit">
  24. <label>分词匹配</label>
  25. </dt>
  26. <dd class="opt" style="width: auto;">
  27. <label class="curpoin"><input type="radio" name="title_word_model" value="0" {if condition="empty($search.title_word_model)"} checked="checked" {/if}>任意词汇</label>&nbsp;&nbsp;
  28. <label class="curpoin"><input type="radio" name="title_word_model" value="1" {if condition="!empty($search.title_word_model) && '1' == $search.title_word_model"} checked="checked" {/if}>全部词汇</label>&nbsp;&nbsp;
  29. </dd>
  30. </dl>
  31. <dl class="row">
  32. <dt class="tit">
  33. <label for="search_second">搜索频率</label>
  34. </dt>
  35. <dd class="opt" style="width: auto;">
  36. 每 <input type="text" name="search_second" placeholder="" id="search_second" value="{$search.search_second|default=''}" class="w50"> 秒内最多搜索 <input type="text" name="search_maxnum" placeholder="" id="search_maxnum" value="{$search.search_maxnum|default=''}" class="w50"> 次
  37. <span class="err"></span>
  38. <p class="notic">同一个用户或者IP,在指定秒内只搜索多少次,超过将锁定</p>
  39. </dd>
  40. </dl>
  41. <dl class="row">
  42. <dt class="tit">
  43. <label for="search_locking">锁定时长</label>
  44. </dt>
  45. <dd class="opt" style="width: auto;">
  46. <input type="text" name="search_locking" placeholder="" id="search_locking" value="{$search.search_locking|default=''}" class="w50"> 秒
  47. <span class="err"></span>
  48. <p class="notic">锁定期间不能搜索,超过时长后自动解除</p>
  49. </dd>
  50. </dl>
  51. <dl class="row">
  52. <dt class="tit">
  53. <label for="search_tabu_words">搜索敏感词</label>
  54. </dt>
  55. <dd class="opt" style="width: auto;">
  56. <textarea rows="5" cols="60" id="search_tabu_words" name="search_tabu_words" style="height:150px; width: 250px;" placeholder="一行=1个敏感词
  57. &lt;
  58. &gt;
  59. &quot;
  60. ;
  61. ,
  62. @
  63. &amp;
  64. #
  65. \
  66. *">{$search.search_tabu_words|default=''}</textarea>
  67. <span class="err"></span>
  68. <p class="notic">禁止前台用户搜索含有敏感词,防止SQL注入</p>
  69. </dd>
  70. </dl>
  71. <div class="bot">
  72. <a href="JavaScript:void(0);" onclick="checkForm();" class="ncap-btn-big ncap-btn-green" id="submitBtn">确认提交</a>
  73. </div>
  74. </div>
  75. </form>
  76. </div>
  77. <script>
  78. function searchModel(obj)
  79. {
  80. $('#dl_search_model_default').hide();
  81. if ($('input[name=search_model]:checked').val() == 'default') {
  82. $('#dl_search_model_default').show();
  83. }
  84. }
  85. function checkForm() {
  86. layer_loading('正在处理');
  87. $.ajax({
  88. type : 'post',
  89. url : "{:url('Search/conf')}",
  90. data : $('#post_form').serialize(),
  91. dataType : 'json',
  92. success : function(res){
  93. layer.closeAll();
  94. if(res.code == 1){
  95. layer.msg(res.msg, {shade: layer_shade, time: 1000}, function(){
  96. window.location.reload();
  97. });
  98. }else{
  99. showErrorMsg(res.msg);
  100. }
  101. },
  102. error: function(e){
  103. layer.closeAll();
  104. showErrorAlert(e.responseText);
  105. }
  106. });
  107. }
  108. </script>
  109. {include file="public/footer" /}