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.

50 lines
1.9 KiB
Plaintext

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1,maximum-scale=1,user-scalable=no">
<title>驰骋工作流</title>
<script type="text/javascript" src="./Scripts/bootstrap/js/jquery.min.js"></script>
<script src="./Scripts/QueryString.js" type="text/javascript"></script>
<!-- 引用通用的js文件. -->
<script type="text/javascript" src="./Scripts/config.js"></script>
<script type="text/javascript" src="./Comm/Gener.js"></script>
<script src="js/mui/js/mui.min.js" type="text/javascript"></script>
<script type="text/javascript" language="javascript">
//页面启动函数.
$(function () {
var handler = new HttpHandler("BP.WF.HttpHandler.CCMobile");
handler.AddUrlData();
var data = handler.DoMethodReturnString("MyFlow_Init");
if (data.indexOf('err@') == 0) {
mui.alert(data, function () {
window.history.go(-1);
});
return;
}
if (data.indexOf('url@') == 0) {
data = data.replace('url@', ''); //如果返回url就直接转向.
data = data.replace('?DoType=HttpHandler', '?');
data = data.replace('&DoType=HttpHandler', '');
data = data.replace('&DoMethod=MyFlow_Init', '');
data = data.replace('&HttpHandlerName=BP.WF.HttpHandler.WF_MyFlow', '');
data = data.replace('&HttpHandlerName=BP.WF.HttpHandler.CCMobile', '');//2019-2-18 shi
data = data.replace('?&', '?');
SetHref(data);
return;
}
$("#Msg").html(data);
return;
});
</script>
</head>
<body>
<form id="cc">
<div id="Msg"> 正在加载,请稍后。。。</div>
</form>
</body>
</html>