12345678910111213141516171819202122 |
- <?php
- namespace app\admin\controller\example;
- use app\common\controller\Backend;
- /**
- * 彩色角标
- *
- * @icon fa fa-table
- * @remark 在JS端控制角标的显示与隐藏,请注意左侧菜单栏角标的数值变化
- */
- class Colorbadge extends Backend
- {
- protected $model = null;
- public function _initialize()
- {
- parent::_initialize();
- $this->model = model('AdminLog');
- }
- }
|