Inter.php 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | Think.Admin
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2017 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: http://think.ctolog.com
  8. // +----------------------------------------------------------------------
  9. // | 开源协议 ( https://mit-license.org )
  10. // +----------------------------------------------------------------------
  11. // | github开源项目:https://github.com/zoujingli/Think.Admin
  12. // +----------------------------------------------------------------------
  13. namespace app\demo\controller;
  14. use controller\BasicAdmin;
  15. /**
  16. * 系统权限管理控制器
  17. * Class Plugs
  18. * @package app\demo\controller
  19. * @author Anyon <zoujingli@qq.com>
  20. * @date 2017/07/10 18:13
  21. */
  22. class Inter extends BasicAdmin
  23. {
  24. /**
  25. * 省市区插件
  26. * @return \think\response\View
  27. */
  28. public function file()
  29. {
  30. $this->title = '文件上传';
  31. return view('', ['title' => $this->title]);
  32. }
  33. }