Echars.php 620 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <?php
  2. namespace app\admin\controller\manage\statics;
  3. use app\common\controller\Backend;
  4. use think\Db;
  5. /**
  6. *
  7. *
  8. * @icon fa fa-circle-o
  9. */
  10. class Echars extends Backend
  11. {
  12. /**
  13. * Complete模型对象
  14. * @var \app\admin\model\manage\statics\Complete
  15. */
  16. protected $model = null;
  17. public function _initialize()
  18. {
  19. parent::_initialize();
  20. }
  21. public function line()
  22. {
  23. return $this->view->fetch();
  24. }
  25. public function pie()
  26. {
  27. return $this->view->fetch();
  28. }
  29. public function bar()
  30. {
  31. return $this->view->fetch();
  32. }
  33. }