Widgets.php 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2016~2020 https://www.crmeb.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
  8. // +----------------------------------------------------------------------
  9. // | Author: CRMEB Team <admin@crmeb.com>
  10. // +----------------------------------------------------------------------
  11. namespace app\admin\controller\widget;
  12. use app\admin\controller\AuthController;
  13. /**
  14. * 文件校验控制器
  15. * Class SystemFile
  16. * @package app\admin\controller\system
  17. *
  18. */
  19. class Widgets extends AuthController
  20. {
  21. /**
  22. * icon
  23. * @return \think\response\Json
  24. */
  25. public function icon()
  26. {
  27. return $this->fetch('widget/icon');
  28. }
  29. /**
  30. * 会员列页面
  31. * @return \think\response\Json
  32. */
  33. public function userlist()
  34. {
  35. return $this->fetch('widget/icon');
  36. }
  37. /**
  38. * 产品列表页
  39. * @return \think\response\Json
  40. */
  41. public function productlist()
  42. {
  43. return $this->fetch('widget/icon');
  44. }
  45. /**
  46. * 图文列表页
  47. * @return \think\response\Json
  48. */
  49. public function newtlist()
  50. {
  51. return $this->fetch('widget/icon');
  52. }
  53. }