Index.php 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | A3Mall
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2020 http://www.a3-mall.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Author: xzncit <158373108@qq.com>
  8. // +----------------------------------------------------------------------
  9. namespace app\admin\controller\common;
  10. use think\facade\Request;
  11. use think\facade\View;
  12. class Index extends \app\admin\controller\Auth{
  13. public function get_goods(){
  14. return View::fetch();
  15. }
  16. public function get_goods_data(){
  17. return View::fetch();
  18. }
  19. public function get_regiment(){
  20. return View::fetch();
  21. }
  22. public function get_group(){
  23. return View::fetch();
  24. }
  25. public function get_second(){
  26. return View::fetch();
  27. }
  28. public function get_article(){
  29. return View::fetch();
  30. }
  31. public function get_notice(){
  32. return View::fetch();
  33. }
  34. }