mirror of
https://gitee.com/bookshelfplus/bookshelfplus
synced 2025-09-03 23:52:51 +08:00
6 lines
198 B
HTML
6 lines
198 B
HTML
<script>
|
|
if(localStorage.getItem("is_admin") === "false") {
|
|
// 是普通用户,跳转到普通用户后台页面
|
|
window.location.href = "/dashboard/user/index";
|
|
}
|
|
</script> |