## 使用范圍
* apps/daohang/theme/模板主題/category/web.tpl
* apps/daohang/theme/模板主題/category/mp.tpl
* apps/daohang/theme/模板主題/category/mini.tpl
* apps/daohang/theme/模板主題/category/page.tpl
## 分類頁普通標簽
{$limit} 分頁大小
{$page} 當前分頁
{$sort} 排序字段
{$order} 排序方式
{$path} 分頁鏈接規則
{$term_id} 分類ID
{$term_name} 分類名稱
{$term_slug} 分類別名
{$term_module} 分類所屬應用
{$term_order} 分類權重
{$term_info} 分類描述
{$term_parent} 父級ID
{$term_count} 數據統計
{$term_tpl} 自定義模板文件名
{$term_title} SEO優化標題
{$term_keywords} SEO優化關鍵字
{$term_description} SEO優化描述
## 分類頁循環輸出實例
通過daohangSelect函數調用循環數據,按分類ID分頁循環輸出網址實例
```
{assign name="list" value=":daohangSelect([
'cache' => true,
'status' =>'normal',
'sort' => $sort,
'order' => $order,
'limit' => $limit,
'page' => $page,
'term_id' => ['in',DcTermSubIds($term_id,'category','array')],
])" /}
```
#### 頁碼標簽
{$list.total} 總記錄數
{$list.per_page} 每頁記錄數
{$list.current_page} 當前頁碼
{$list.last_page} 最后一頁頁碼
#### 簡潔分頁樣式
```
{:DcPageSimple($list['current_page'], $list['last_page'], $path)}
```
#### 常規分頁樣式
```
{:DcPage($list['current_page'], $list['per_page'], $list['total'], $path)}
```