1 Star 1 Fork 0

跃来风/DocSystem

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
index.jsp 1.15 KB
一键复制 编辑 原始数据 按行查看 历史
跃来风 提交于 2021-05-03 13:09 . Initial commit
<%@ page language="java" import="com.DocSystem.controller.*" contentType="text/html; charset=utf-8" pageEncoding="utf-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>系统引导</title>
</head>
<body>
</body>
<script language="javascript" type="text/javascript">
<%
Integer docSysInitState = BaseController.getDocSysInitState();
String docSysInitAuthCode = BaseController.getDocSysInitAuthCode();
String serverIP = BaseController.getServerIP();
System.out.println("index.jsp: docSysInitState:" + docSysInitState + " docSysInitAuthCode:" + docSysInitAuthCode);
%>
var docSysInitState=<%=docSysInitState%>;
var docSysInitAuthCode=<%=docSysInitAuthCode%>;
var serverIP= "<%=serverIP%>";
if(docSysInitState == null || docSysInitState == 0)
{
// 以下方式直接跳转
window.location.href='/DocSystem/web/index.html';
// 以下方式定时跳转
//setTimeout("javascript:location.href='index.html'", 5000);
}
else
{
window.location.href='/DocSystem/web/install.html?authCode='+docSysInitAuthCode;
}
</script>
</html>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/zy0606/DocSystem.git
git@gitee.com:zy0606/DocSystem.git
zy0606
DocSystem
DocSystem
master

搜索帮助