selectProcess.jsp 1.0 KB

12345678910111213141516171819202122232425262728293031
  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>选择流程</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" refresh="false" dialog="true" callback="processSubmit" action="dataProcessController.do?updateDataList" layout="table">
  11. <input name="id" type="hidden" value="${id}">
  12. <input name="autoFormCode" type="hidden" value="${autoFormCode}">
  13. <table style="width:100%" cellpadding="0" cellspacing="1" class="formtable">
  14. <tbody><th>流程列表</th>
  15. <c:forEach items="${tsBusbaseList }" var="proc">
  16. <tr>
  17. <td class="value">
  18. <input name="processkey" type="radio" value="${proc.TPProcess.processkey }">
  19. <span>${proc.TPProcess.processname }</span>
  20. </td>
  21. </tr>
  22. </c:forEach>
  23. </tbody>
  24. </table>
  25. </t:formvalid>
  26. </body>
  27. </html>
  28. <script type="text/javascript">
  29. </script>