| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 | <?phpnamespace 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();    }}
 |