nodeUserCondition.jsp 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
  2. <%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
  3. <%@taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %>
  4. <table style="width:100%" id="table_${nodeUserMap.nodeId}" class="table-grid">
  5. <thead>
  6. <tr>
  7. <th width="80" nowrap="nowrap">序号</th>
  8. <th width="*" nowrap="nowrap">条件</th>
  9. <th nowrap="nowrap" width="90px">批次号</th>
  10. </tr>
  11. </thead>
  12. <tbody class="data">
  13. <input type="hidden" name="setId" value="${nodeUserMap.setId}"/>
  14. <input type="hidden" name="defId" value="${defId}"/>
  15. <input type="hidden" name="nodeId" value="${nodeUserMap.nodeId}"/>
  16. <c:choose>
  17. <c:when test="${fn:length(nodeUserMap.bpmUserConditionList)>0}">
  18. <c:forEach items="${nodeUserMap.bpmUserConditionList}" var="conditionNode" varStatus="cnt">
  19. <tr <c:if test="${cnt.index%2=='0' }">class="odd"</c:if>>
  20. <td>
  21. <input type='checkbox' name='nodeUserCk' onchange="changeCheck(this)"/>&nbsp;${cnt.count}
  22. <input type="hidden" name="conditionId" value="${conditionNode.id}"/>
  23. <input type="hidden" name="sn" value="${conditionNode.sn}"/>
  24. <c:if test="${nodeId!=null}">
  25. <input type="hidden" name="nodeId" value="${nodeId}"/>
  26. </c:if>
  27. </td>
  28. <td>
  29. <div name="conditionShow">
  30. <textarea class="hidden">${conditionNode.condition}</textarea>
  31. </div>
  32. <div style="margin:8px 0 0 0;">
  33. ${conditionNode.conditionShow}
  34. </div>
  35. </td>
  36. <td name="groupNoTd">
  37. <div style="width: 80px">
  38. <input name="groupNo" style="width:70px;" class="inputText" ivalue ="${conditionNode.groupNo}" value="${conditionNode.groupNo}" />
  39. <!-- <div name="groupNo" style="width:70px;border: 2px;border: 1 solid silver;"><span>${conditionNode.groupNo}</span></div>-->
  40. </div>
  41. </td>
  42. </tr>
  43. </c:forEach>
  44. </c:when>
  45. </c:choose>
  46. </tbody>
  47. </table>