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