4
hao
2025-04-16 c5fb1fbcbb2bf4d511773d348f9ef625855c61fc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<!--head部分-->
<head th:include="layout :: htmlhead" th:with="title='后台管理'">
</head>
<script type="text/javascript">
    var href=window.location.href;
    if(href.indexOf("kickout")>0){
        setTimeout("top.location.href = context + 'login?kickout';", 0);
    }else{
        setTimeout("top.location.href = context + 'login';", 0);
    }
    // if(href.indexOf("kickout")>0){
    //     setTimeout("top.location.href='/login?kickout';", 0);
    // }else{
    //     setTimeout("top.location.href='/login';", 0);
    // }
</script>
</html>