介绍
addCrumb可以设置页面的面包屑导航,
示例
代码实现
$this->addCrumb('公众号管理', U('Mp/Index/index'), '')
->addCrumb('粉丝管理', U('Mp/Fans/lists'), '')
->addCrumb('粉丝列表', '', 'active')
->common_lists();
模型自定义
$model = array(
'crumb' => array(
array(
'title' => '公众号管理',
'url' => U('Mp/Index/index'),
'class' => ''
),
array(
'title' => '粉丝管理',
'url' => U('Mp/Fans/lists'),
'class' => ''
),
array(
'title' => '粉丝列表',
'url' => '',
'class' => ''
)
)
);
$this->common_lists($model);