## 使用范围
* apps/daohang/theme/模板主题/search/index.tpl
* apps/daohang/theme/模板主题/search/web.tpl
* apps/daohang/theme/模板主题/search/mp.tpl
* apps/daohang/theme/模板主题/search/mini.tpl
## 搜索页普通标签
{$seoTitle} SEO优化标题
{$seoKeywords} SEO优化关键字
{$seoDescription} SEO优化描述
{$searchText} 搜索关键字
{$pagePath} 分页路径链接规则
{$pageSize} 分页大小
{$pageNumber} 当前页码
{$sortName} 排序字段
{$sortOrder} 排序方式
#### 页码标签
{$list.total} 总记录数
{$list.per_page} 每页记录数
{$list.current_page} 当前页码
{$list.last_page} 最后一页页码
## 搜索页循环标签
{$searchItem} 搜索引擎列表(普通数组)
{$list} 搜索结果数据列表(二维数组)
#### 简洁分页样式实例
```
{:DcPageSimple($list['current_page'], $list['last_page'], $pagePath)}
```
#### 常规分页样式实例
```
{:DcPage($list['current_page'], $list['per_page'], $list['total'], $pagePath)}
```
## 搜索结果循环输出实例
通过foreach标签或volist标签循环输出搜索结果,实例如下
```
{foreach $list['data'] as $web}
<h6 class="mt-0 text-truncate">
<a class="font-weight-bold {$web.info_color|daohangColor}" href="{:daohangUrlInfo($web)}">{$web.info_name|DcHtml}</a>
</h6>
<p class="mb-1">
{$web.info_excerpt|daohangSubstr=0,86,true}
</p>
{/foreach}
```
## 搜索引擎列表输出实例
![](https://img.kancloud.cn/2f/f6/2ff62b1214c95b6fb18fe31841d50959_832x184.png)
```
{volist name="searchItem" id="searchUrl"}
{if $key eq $action}
<li class="nav-item"><a class="nav-link active" href="{$searchUrl}" target="{:daohangSearchTarget($key)}">{:lang('dh_search_'.$key)}</a></li>
{else/}
<li class="nav-item"><a class="nav-link" href="{$searchUrl}" target="{:daohangSearchTarget($key)}">{:lang('dh_search_'.$key)}</a></li>
{/if}
{/volist}
```