sysGoodsApplicationOpView.jsp 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
  2. <%@include file="/commons/include/html_doctype.html" %>
  3. <html>
  4. <head>
  5. <%@include file="/commons/include/form.jsp" %>
  6. <title>审批意见</title>
  7. <script type="text/javascript" src="${ctx}/js/hotent/CustomValid.js"></script>
  8. <script type="text/javascript">
  9. /*KILLDIALOG*/
  10. var dialog = frameElement.dialog; //调用页面的dialog对象(ligerui对象)
  11. $().ready(function (){
  12. var receiptinformation = dialog.get("receiptinformation");
  13. $("#opinion").val(receiptinformation);
  14. });
  15. </script>
  16. </head>
  17. <body>
  18. <div class="panel">
  19. <div class="panel-top">
  20. <div class="tbar-title">
  21. <span class="tbar-label">审批意见</span>
  22. </div>
  23. </div>
  24. <div class="panel-body">
  25. <form id="frmComm">
  26. <table class="table-detail" cellpadding="0" cellspacing="0" border="0">
  27. <tr>
  28. <th>审批意见:</th>
  29. <td>
  30. <textarea rows="6" cols="50" style="width:300px" id="opinion" name="opinion" validate={required:true,maxLength:500} readonly ></textarea>
  31. </td>
  32. </tr>
  33. </table>
  34. </form>
  35. </div>
  36. </div>
  37. </body>
  38. </html>