You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
523 B

7 years ago
  1. <?php
  2. namespace App\Http\Controllers\Admin;
  3. use App\Http\Controllers\Admin\CommonController;
  4. class IndexController extends CommonController
  5. {
  6. public function __construct()
  7. {
  8. parent::__construct();
  9. }
  10. public function index()
  11. {
  12. return view('admin.index.index');
  13. }
  14. //更新配置
  15. public function upconfig()
  16. {
  17. updateconfig();
  18. }
  19. //更新缓存
  20. public function upcache()
  21. {
  22. }
  23. //页面跳转
  24. public function jump()
  25. {
  26. return view('admin.index.jump');
  27. }
  28. }