processnode.jsp 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <%@ page language="java" import="java.util.*" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
  2. <%@include file="/context/mytags.jsp"%>
  3. <!DOCTYPE html>
  4. <html>
  5. <head>
  6. <title><t:mutiLang langKey="common.process.params" /></title>
  7. <t:base type="jquery,easyui,tools"></t:base>
  8. </head>
  9. <body style="overflow-y: hidden" scroll="no">
  10. <t:formvalid formid="formobj" dialog="true" layout="div" action="processController.do?saveNode">
  11. <input name="id" type="hidden" value="${processnode.id}">
  12. <input name="TPProcess.id" type="hidden" value="${processid}">
  13. <fieldset class="step">
  14. <div class="form"><label class="Validform_label"> <t:mutiLang langKey="common.node.name" />: </label> <input name="processnodename" value="${processnode.processnodename }" class="inputxt" datatype="s1-50"> <span class="Validform_checktip">节点名称范围在1~50位字符<%-- <t:mutiLang langKey="nodename.rang3to50" /> --%></span></div>
  15. <div class="form"><label class="Validform_label"> <t:mutiLang langKey="common.node.code" />: </label> <input name="processnodecode" value="${processnode.processnodecode}" class="inputxt"></div>
  16. <div class="form"><label class="Validform_label"> <t:mutiLang langKey="common.node.form_pc" />: </label> <input name="modelandview" value="${processnode.modelandview}" class="inputxt" style="width: 400px"></div>
  17. <div class="form"><label class="Validform_label"> <t:mutiLang langKey="common.node.form_mobile" />: </label> <input name="modelandviewMobile" value="${processnode.modelandviewMobile}" class="inputxt" style="width: 400px"></div>
  18. <div class="form"><label class="Validform_label"> <t:mutiLang langKey="common.node.timeout" />: </label> <input name="nodeTimeout" value="${processnode.nodeTimeout}" class="inputxt" datatype="n1-11" ignore="ignore" style="width: 400px"></div>
  19. <%-- 表单不再使用,全部采用链接的方式配置
  20. <div class="form">
  21. <label class="Validform_label">
  22. 内部表单:
  23. </label>
  24. <select name="fromid" style="width:140px">
  25. <option value="0">-请选择内部表单-</option>
  26. <c:forEach items="${formList }" var="form">
  27. <option value="${form.id }" <c:if test="${form.id==processnode.TPForm.id}">selected="selected"</c:if>>
  28. ${form.formname }
  29. </option>
  30. </c:forEach>
  31. </select>
  32. </div>
  33. --%></fieldset>
  34. </t:formvalid>
  35. </body>
  36. </html>