You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

47 lines
1.7 KiB
Plaintext

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<script type="text/javascript" src="../WF/Scripts/bootstrap/js/jquery.min.js"></script>
<script type="text/javascript" src="../WF/Scripts/bootstrap/js/bootstrap.min.js"></script>
<script src="../WF/Scripts/QueryString.js" type="text/javascript"></script>
<script src="../WF/Scripts/config.js" type="text/javascript"></script>
<script src="../WF/Comm/Gener.js" type="text/javascript"></script>
<base target="_self" />
<script language="javascript" type="text/javascript" >
//页面启动函数.
$(function () {
var webUser = new WebUser();
if (webUser.No == "" || webUser.No == null) {
//如果没有登录信息,请在这里执行校验,并让其登录.
}
//登录成功之后,就开始跳转.
var doWhat = GetQueryString("DoWhat");
var url = "";
switch (doWhat) {
case "StartFlow":
url = "../WF/MyFlow.htm";
break;
case "Start":
url = "../WF/Start.htm";
break;
case "Todolist":
url = "../WF/Todolist.htm";
case "Runing":
url = "../WF/Runing.htm";
break;
default:
break;
}
window.location.href = filterXSS(url)+ GetPara();
});
</script>
</head>
<body>
</body>
</html>