Widgets.php 868 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <?php
  2. namespace app\admin\controller\widget;
  3. use app\admin\controller\AuthController;
  4. /**
  5. * 文件校验控制器
  6. * Class SystemFile
  7. * @package app\admin\controller\system
  8. *
  9. */
  10. class Widgets extends AuthController
  11. {
  12. /**
  13. * icon
  14. * @return \think\response\Json
  15. */
  16. public function icon()
  17. {
  18. return $this->fetch('widget/icon');
  19. }
  20. /**
  21. * 会员列页面
  22. * @return \think\response\Json
  23. */
  24. public function userlist()
  25. {
  26. return $this->fetch('widget/icon');
  27. }
  28. /**
  29. * 产品列表页
  30. * @return \think\response\Json
  31. */
  32. public function productlist()
  33. {
  34. return $this->fetch('widget/icon');
  35. }
  36. /**
  37. * 图文列表页
  38. * @return \think\response\Json
  39. */
  40. public function newtlist()
  41. {
  42. return $this->fetch('widget/icon');
  43. }
  44. }