联系官方销售客服

1835022288

028-61286886

开发框架 版主:迅睿框架研发组
在后台栏目里面,选择搜索模板,为什么不生效呢
类型:迅睿CMS 更新时间:2022-06-17 17:13:22 搜索模板


在后台选择搜索模板为什么不生效呢

图片

图片

代码部分是搬得默认模板的搜索代码

图片


回帖
  • 迅睿框架技术-陈老师
    #1楼    迅睿框架技术-陈老师
    2022-06-17 16:23:30
    Chrome 0
    那是因为你图一设置的是某个栏目的搜索模板,接下来看图二没有带栏目id,就不能读取图一的栏目设置的搜索模板了, 解决方案是图2地址带上你图一设置栏目的id号
  • 小霸王007
    #2楼    小霸王007
    2022-06-17 16:28:07
    Firefox 101.0 0
    迅睿框架技术-陈老师 可以给代码吗?老师,我加了但是不行,栏目id号是30
    <form class="search-form" action="{WEB_DIR}index.php" method="get">
                            <input type="hidden" name="s" value="api">
                            <input type="hidden" name="c" value="api">
                            <input type="hidden" name="m" value="search">
                            <input type="hidden" name="catid" value="30">
                            <input type="hidden" name="dir" id="dr_search_module_dir" >                                       
                    
                    <label>
                      
                        <input type="text" class="search-input" name="keyword">
                    </label>
                    <button type="submit" class="search-btnSubmit" ></button>
                    <select    class="search-a">
                       
                                     
                                      {php $top_search=[];}
                                  {cache name=module-content}
                                  {if $t.search}
                                  {php !$top_search && $top_search=$t;}
                                  <option onclick="javascript:dr_search_module_select('{$t.dirname}', '{$t.name}');">{$t.name} </option>
                                         
                                          {/if}
                                  {/cache}
                                  </select>
                    <button type="reset" class="search-btnClear" style="right: 255px;"></button>
                    <script>
                        // 这段js是用来执行搜索的
                        function dr_search_module_select(dir, name) {
                            $("#dr_search_module_dir").val(dir);
                            $("#dr_search_module_name").html(name+' <i class="fa fa-angle-down"></i>');
                        }
                        dr_search_module_select('{php echo MOD_DIR ? MOD_DIR : $top_search.dirname}', '{php echo MOD_DIR ? MODULE_NAME : $top_search.name}');
                    </script>
                </form>
  • 迅睿框架技术-陈老师
    #3楼    迅睿框架技术-陈老师
    2022-06-17 16:57:36
    Chrome 0
    看一楼的方案
  • 迅睿框架技术-陈老师
    #4楼    迅睿框架技术-陈老师
    2022-06-17 17:05:38
    Chrome 0
    看看这个问题如何解决的
  • 小霸王007
    #5楼    小霸王007
    2022-06-17 17:13:22
    Firefox 101.0 0
    迅睿框架技术-陈老师 这还需要二开吗,老师