| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <%@ include file="/include/head.jsp"%>
- <%@ page contentType="text/html;charset=GBK"%>
- <%@ taglib uri="http://java.sun.com/jstl/core" prefix="c"%>
- <%@taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn"%>
- <%@ taglib uri="/WEB-INF/tlds/html.tld" prefix="html" %>
- <html>
- <head>
- <title>过程编辑>></title>
- <link href="/shares/resources/css/type1.css" rel="stylesheet" type="text/css" />
- <link type="text/css" href="/shares/resources/css/themes/redmond/ui.all.css" rel="stylesheet" />
- <script type="text/javascript" src="/ynet/js/jquery-1.3.2.min.js"></script>
- <SCRIPT LANGUAGE="JavaScript">
- function submitForm(){
- if (theForm.WorkflowName.value=="") {window.alert("名称不能为空");return("");}
- if (theForm.Item1.value=="") {window.alert("项目不能为空");return("");}
- theForm.submit();
- }
- </SCRIPT>
- </head>
- <body>
- <form name="theForm" method="POST" action="SubmitWorkflow.do?id=${id}">
- <%@ include file="/include/top.jsp"%>
- <input class="small" type="button" value="提交" name="B1" onclick="submitForm()">
- <div>
- <table border="0" cellspacing="1" width="100%" class=tab_table>
- <tr>
- <td class="caption" >名称<font color="red">*</font></td>
- <td class="detail" ><input type="text" name="WorkflowName" size="20" value='${workflow.workflowName}'></td>
- </tr>
- <tr>
- <td class="caption" >启动任务<font color="red">*</font></td>
- <td class="detail" >
- <input name="FirstTask" value="${workflow.firstTask}">
- </td>
- </tr>
- <tr>
- <td class="caption" >业务关键字<font color="red">*</font></td>
- <td class="detail" ><input type="text" name="Item1" size="20" value='${workflow.item1}'></td>
- </tr>
- <tr>
- <td class="caption" >角色<font color="red">*</font></td>
- <td class="detail" >
- <html:select name="Role" table="t_role" title="role_name" id="universalid" initValue=""/>
- </td>
- </tr>
- <tr>
- <td class="caption" >变量源</td>
- <td class="detail" >
- <select name="ViewAppId" class="formselect">${wfForms}</select>
- </td>
- </tr>
- <tr>
- <td class="caption" >定义文件</td>
- <td class="detail" >
- <input name="fileName" size="60" value="${workflow.fileName}">
- </td>
- </tr>
- </table>
- ${wfTasks}
- </div>
- </form>
- </body>
- </html>
|