Index.php 659 B

12345678910111213141516171819202122232425
  1. <?php
  2. /**
  3. * @copyright Copyright (c) 2017 https://www.sapixx.com All rights reserved.
  4. * @license Licensed (http://www.apache.org/licenses/LICENSE-2.0).
  5. * @author pillar<ltmn@qq.com>
  6. * 应用管理首页
  7. */
  8. namespace app\popupshop\controller\Manage;
  9. use app\common\controller\Manage;
  10. use think\facade\Request;
  11. class Index extends Manage{
  12. public function initialize() {
  13. parent::initialize();
  14. $this->assign('pathMaps', [['name'=>'管理首页','url'=>'javascript:;']]);
  15. }
  16. /**
  17. * 应用管理首页
  18. * @access public
  19. */
  20. public function Index(){
  21. return redirect('bank/statistics');
  22. }
  23. }