修改路由

This commit is contained in:
wuyanwen 2019-12-14 16:56:59 +08:00
parent 3ec10515fb
commit 485432acfb
2 changed files with 8 additions and 6 deletions

View File

@ -1,5 +1,5 @@
<?php
$router->get('/', '\catchAdmin\index\controller\index@index');
$router->get('theme', '\catchAdmin\index\controller\index@theme');
$router->get('dashboard', '\catchAdmin\index\controller\index@dashboard');
$router->get('/', '\catchAdmin\index\controller\Index@index');
$router->get('theme', '\catchAdmin\index\controller\Index@theme');
$router->get('dashboard', '\catchAdmin\index\controller\Index@dashboard');

View File

@ -49,14 +49,14 @@
</a>
<dl class="layui-nav-child">
<dd lay-unselect>
<a ew-href="page/template/user-info.html">个人中心</a>
<a ew-href="javascript:;">个人中心</a>
</dd>
<dd lay-unselect>
<a ew-event="psw">修改密码</a>
</dd>
<hr>
<dd lay-unselect>
<a ew-event="logout" data-url="{:url('logout')}">退出</a>
<a ew-event="logouts" data-url="{:url('logout')}">退出</a>
</dd>
</dl>
</li>
@ -127,7 +127,9 @@
menuPath: '{:url("dashboard")}',
menuName: '<i class="layui-icon layui-icon-home"></i>'
});
window.logouts= function(){
layer.msg('弹窗被成功打开了');
};
});
</script>
</body>