| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 | {template 'search', 'header'}	<!-- <div class="clr sr_body sr_list">    	<div class="sr_main">            <div class="brd1s"></div>            <div class="wrap sr_lists">                <div class="c wrap">                	<ul class="wrap">						{loop $data $i $r}						<li class="tw">                               {if $r['thumb']} <a href="{$r[url]}"><img src="{thumb($r['thumb'],197,136)}" alt=""></a>{/if}                                <div class="tw_right">                                    <p class="tw_title h3"><a href="{$r[url]}">{$r[title]}</a></p>                                    <p class="tw_content h5">                                        {$r[description]}                                    </p>                                    <p class="tw_time ">                                        {format::date($r[inputtime], 1)}                                    </p>                                </div>                            </li>						{/loop}						{if empty($data)}未找到结果{/if}                    </ul>                    <div id="pages" class="text-c mg_t20">{$pages}</div>					{if $setting['relationenble']}					<div class="wrap sgch"><strong>相关搜索:</strong>					{loop $relation $k $v}					<a href="?m=search&c=index&a=init&typeid={$typeid}&siteid={$siteid}&q={$v['keyword']}">{$v['keyword']}</a> 					{/loop}					</div>					{/if}                </div>            </div>      </div>  </div> -->  <div class="ui_div1">    <div class="i_con">     <div class="n_box3">         <dl class="fl n_box2_con">            {pc:get sql="select  title,url,thumb,description,inputtime  from v9_news  where title like   '%$q%'                UNION ALL  select  title,url,thumb,description,inputtime  from v9_picture where title like '%$q%'               UNION ALL  select  title,url,thumb,description,inputtime  from v9_banner where title like '%$q%'               UNION ALL  select  title,url,thumb,description,inputtime  from v9_product where title like '%$q%'               UNION ALL  select  title,url,thumb,description,inputtime  from v9_gsgs where title like '%$q%'               UNION ALL  select  title,url,thumb,description,inputtime  from v9_dp where title like '%$q%'               UNION ALL  select  title,url,thumb,description,inputtime  from v9_service where title like '%$q%'               UNION ALL  select  title,url,thumb,description,inputtime  from v9_recruit where title like '%$q%'               UNION ALL  select  title,url,thumb,description,inputtime  from v9_about where title like '%$q%'"              num="2000"  page="$page"}                    {if $data == ""}                    未搜索到结果!                    {else}                      {loop $data $v}                     <dd>                        <a href="{$v[url]}" class="div Amplification">                          <div class="fl a_img"><img src="{$v[thumb]}"></div>                          <div class="fr a_img_r">                            <div class="s1 fl">{$v[title]}</div>                            <div class="fl s2">                              {$v[description]}                            </div>                            <div class="fl s3"><span>{date('Y-m-d',time($v[inputtime]))}</span></div>                            <div class="clearboth"></div>                          </div>                          <div class="clearboth"></div>                        </a>                     </dd>                    {/loop}                    {/if}                    {/pc}            {loop $data $i $r}                   {/loop}         {if empty($data)}未找到结果{/if}        </dl>       <div class="clearboth"></div>    <div class="n_box1_pages">         {$pc_pages}       </div>     </div>  </div></div><script type="text/javascript" src="{JS_PATH}search_history.js"></script>{if $setting['suggestenable']}<script type="text/javascript" src="{JS_PATH}jquery.suggest.js"></script><script type="text/javascript" src="{JS_PATH}search_suggest.js"></script>{/if}{template 'search', 'footer'}
 |