processpro.jsp 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. <%@ page language="java" import="java.util.*" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
  2. <%@include file="/context/mytags.jsp"%>
  3. <t:base type="jquery,easyui,tools"></t:base>
  4. <!DOCTYPE html>
  5. <html>
  6. <head>
  7. <title><t:mutiLang langKey="common.process.params"/></title>
  8. <t:base type="jquery,tools"></t:base>
  9. </head>
  10. <body style="overflow-y: hidden" scroll="no">
  11. <t:formvalid formid="formobj" dialog="true" layout="div" action="processController.do?savePro">
  12. <input name="id" type="hidden" value="${processpro.id }">
  13. <input name="TPProcess.id" type="hidden" value="${processid}">
  14. <fieldset class="step">
  15. <div class="form">
  16. <label class="Validform_label"><t:mutiLang langKey="common.variable.name"/>:
  17. </label>
  18. <input type="text" name="processproname" value="${processpro.processproname}" >
  19. </div>
  20. <div class="form">
  21. <label class="Validform_label">
  22. <t:mutiLang langKey="common.variable.code"/>:
  23. </label>
  24. <input type="text" name="processprokey" value="${processpro.processprokey }" datatype="s1-20" >
  25. <span class="Validform_checktip">参数编码1-20位字符!<%-- <t:mutiLang langKey="variablecode.range.3to20"/> --%></span>
  26. </div>
  27. <div class="form">
  28. <label class="Validform_label">
  29. 变量值:
  30. </label>
  31. <input type="text" name="processprovalue" value="${processpro.processprovalue}" >
  32. </div>
  33. <div class="form">
  34. <label class="Validform_label">
  35. <t:mutiLang langKey="common.variable.type"/>:
  36. </label>
  37. <select name="processprotype">
  38. <option value="default" <c:if test="${processpro.processprotype=='default'}">selected="selected"</c:if>>
  39. <t:mutiLang langKey="common.variable.type.normal"/>
  40. </option>
  41. <option value="opt" <c:if test="${processpro.processprotype=='opt'}">selected="selected"</c:if>>
  42. <t:mutiLang langKey="common.variable.type.control"/>
  43. </option>
  44. </select>
  45. </div>
  46. <div class="form">
  47. <label class="Validform_label">
  48. <t:mutiLang langKey="common.variable.node"/>:
  49. </label>
  50. <select name="TPProcessnode.id">
  51. <c:forEach items="${nodeList}" var="node">
  52. <option value="${node.id}" <c:if test="${node.id==processpro.TPProcessnode.id}">selected="selected"</c:if>>
  53. ${node.processnodename}
  54. </option>
  55. </c:forEach>
  56. </select>
  57. </div>
  58. </fieldset>
  59. </t:formvalid>
  60. </body>
  61. </html>