incTaskOpinion.jsp 1008 B

12345678910111213141516171819202122232425262728
  1. <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
  2. <%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %>
  3. <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
  4. <%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>
  5. <%@ taglib prefix="display" uri="http://displaytag.sf.net" %>
  6. <table class="table-detail" style="width:1000px;margin:0px auto;">
  7. <tr>
  8. <th>意见</th>
  9. <td>
  10. <c:if test="${!empty taskAppItems}">
  11. 常用语选择:
  12. <select id="selTaskAppItem" onchange="addComment()" >
  13. <option value="" style="text-align:center;">-- 请选择 --</option>
  14. <c:forEach var="item" items="${taskAppItems}">
  15. <option value="${item}">${item}</option>
  16. </c:forEach>
  17. </select>
  18. <br>
  19. </c:if>
  20. <textarea rows="2" style="width:98%;" include="1" cols="78" id="voteContent" name="voteContent" maxlength="512">${taskOpinion.opinion}</textarea>
  21. </td>
  22. </tr>
  23. </table>