| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?php
- /**
- *
- * @copyright ©2020 点小铺
- * @author hanj
- * @link: https://dyuit.com
- * Created by VSCode
- */
- namespace app\store\controller;
- use app\store\model\Store as StoreModel;
- /**
- * 后台首页
- * Class Index
- * @package app\store\controller
- */
- class Index extends Controller
- {
- /**
- * 后台首页
- * @return mixed
- * @throws \think\Exception
- * @throws \think\exception\DbException
- */
- public function index()
- {
- // 当前用户菜单url
- $menus = $this->menus();
- $url = current(array_values($menus))['index'];
- if ($url !== 'index/index') {
- $this->redirect($url);
- }
- $model = new StoreModel;
- return $this->fetch('index', ['data' => $model->getHomeData()]);
- }
- }
|