2024-08-14 15:17:51 +08:00

61 lines
1.7 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>
<form action="${ctx}/procDefModelMgr/createOpenFlow.do" method="post"
id="modelForm">
<input name="key" id="id" type="hidden" value="${id}"/>
<input name="name" id="name" type="hidden" value="${name}"/>
<input name="appId" id="appId" type="hidden" value="${appId}"/>
<div class="main-container" id="main-container">
<div class="panel panel-primary">
<div class="panel-body">
<br />
<br />
<br />
<br />
<div><h1 align="center">${errorMsg}</h1></div>
<div align="center">
<img src="${ctx}/resource/css/images/flowdemo.png" />
</div>
<br />
<br />
<div align="center">绘制上图所示流程图,设定数据流转方式,即可搭建线上工作流 如有问题,请参考帮助中心</div>
<br />
<br />
<div align="center">
<button type="submit" class="btn btn-sm btn-primary"
id="submitButton" onclick="submitForm()" ${not empty errorMsg?"disabled":""}>
开始使用 <i class="ace-icon fa fa-save bigger-110"></i>
</button>
</div>
</div>
</div>
</div>
</form>
</body>
</html>