48 lines
1.1 KiB
Plaintext
48 lines
1.1 KiB
Plaintext
<%@ page contentType="text/html;charset=UTF-8"%>
|
|
<%@ include file="/commons/taglibs.jsp"%>
|
|
<%
|
|
String path = request.getContextPath();
|
|
String basePath = request.getScheme() + "://" + request.getServerName() + ":" + request.getServerPort()
|
|
+ path + "/";
|
|
%>
|
|
<!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">
|
|
<%@ include file="/commons/meta.jsp"%>
|
|
<base href="<%=basePath%>">
|
|
<title>创建模型</title>
|
|
<script>
|
|
function submitForm() {
|
|
return false;
|
|
}
|
|
|
|
$(document).ready(function() {
|
|
|
|
});
|
|
</script>
|
|
</head>
|
|
<body class="white-page">
|
|
<form action="${ctx}/procDefModelMgr/createOpenFlow.do" method="post"
|
|
id="modelForm">
|
|
<div class="main-container" id="main-container">
|
|
<div class="panel panel-primary">
|
|
|
|
<div class="panel-body">
|
|
<br />
|
|
<br />
|
|
<br />
|
|
<br />
|
|
<br />
|
|
<br />
|
|
<div align="center">请切换至流程建模!</div>
|
|
<br />
|
|
<br />
|
|
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
|
|
|
|
</body>
|
|
</html> |