You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- <?php
-
- namespace app\admin\controller\example;
-
- use app\common\controller\Backend;
-
- /**
- * 统计图表示例
- *
- * @icon fa fa-charts
- * @remark 展示在FastAdmin中使用Echarts展示丰富多彩的统计图表
- */
- class Echarts extends Backend
- {
- protected $model = null;
-
- public function _initialize()
- {
- parent::_initialize();
- $this->model = model('AdminLog');
- }
-
- /**
- * 查看
- */
- public function index()
- {
-
- return $this->view->fetch();
- }
-
- /**
- * 详情
- */
- public function detail($ids)
- {
- $row = $this->model->get(['id' => $ids]);
- if (!$row) {
- $this->error(__('No Results were found'));
- }
- $this->view->assign("row", $row->toArray());
- return $this->view->fetch();
- }
- }
|