123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <?php
- namespace app\admin\controller\manage\statics;
- use app\common\controller\Backend;
- use think\Db;
- /**
- *
- *
- * @icon fa fa-circle-o
- */
- class Echars extends Backend
- {
-
- /**
- * Complete模型对象
- * @var \app\admin\model\manage\statics\Complete
- */
- protected $model = null;
- public function _initialize()
- {
- parent::_initialize();
- }
-
- public function line()
- {
- return $this->view->fetch();
- }
- public function pie()
- {
- return $this->view->fetch();
- }
- public function bar()
- {
- return $this->view->fetch();
- }
- }
|