Index.php 982 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: Kevin
  5. * Date: 2018/8/2
  6. * Time: 21:54
  7. */
  8. namespace app\admin\controller;
  9. use think\Controller;
  10. use think\Db;
  11. class Index extends Base
  12. {
  13. /**
  14. * 框架页面
  15. * @return mixed
  16. */
  17. public function index()
  18. {
  19. return $this->fetch('/index');
  20. }
  21. /**
  22. * 首页
  23. * @return mixed|\think\response\Json
  24. */
  25. public function indexPage()
  26. {
  27. return $this->fetch('index/index');
  28. }
  29. /**
  30. * 清除缓存
  31. */
  32. public function clear() {
  33. if (delete_dir_file(CACHE_PATH) && delete_dir_file(TEMP_PATH)) {
  34. writelog('清除缓存成功',200);
  35. return json(['code' => 200, 'msg' => '清除缓存成功']);
  36. } else {
  37. writelog('清除缓存失败',100);
  38. return json(['code' => 100, 'msg' => '清除缓存失败']);
  39. }
  40. }
  41. public function webuploader(){
  42. return $this->fetch('/webuploader');
  43. }
  44. }