46 lines
1.5 KiB
Plaintext
46 lines
1.5 KiB
Plaintext
<%@ page contentType="text/html;charset=UTF-8"%>
|
|
<%@page import="com.blueland.bpm.engine.config.model.*" %>
|
|
<%@ 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"%>
|
|
<link rel="stylesheet" href="${ctx}/resource/js/plugins/codemirror/codemirror.css">
|
|
<link rel="stylesheet" href="${ctx}/resource/js/plugins/codemirror/eclipse.css">
|
|
<script src="${ctx}/resource/js/plugins/codemirror/codemirror.js"></script>
|
|
<script src="${ctx}/resource/js/plugins/codemirror/clike.js"></script>
|
|
<base href="<%=basePath%>">
|
|
<title>流程环节规则表新增</title>
|
|
|
|
</head>
|
|
<body>
|
|
|
|
<form id="myForm" action="${ctx}/actInfo/activityResourceRule/save.do" method="post">
|
|
<button type="button" onclick="art.dialog.close();">
|
|
<span class="icon_back">关闭</span>
|
|
</button>
|
|
<table class="tableStyle" formMode="true" footer="normal">
|
|
<tr>
|
|
<td>结果值:</td>
|
|
<td>${ruleScriptValue}</td>
|
|
</tr>
|
|
<tr>
|
|
<td width="20%">结果值类型:</td>
|
|
<td>${ruleScriptValueType}</td>
|
|
</tr>
|
|
<tr>
|
|
<td>验证结果:</td>
|
|
<td><div style="overflow-y:scroll;height:200px;">
|
|
${validateMsg}</div></td>
|
|
</tr>
|
|
</table>
|
|
|
|
</form>
|
|
|
|
</body>
|
|
</html>
|
|
|