123456789101112131415161718192021222324252627282930313233343536373839 |
- <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
- <%@include file="/commons/include/html_doctype.html" %>
- <html>
- <head>
- <%@include file="/commons/include/form.jsp" %>
- <title>审批意见</title>
- <script type="text/javascript" src="${ctx}/js/hotent/CustomValid.js"></script>
- <script type="text/javascript">
- /*KILLDIALOG*/
- var dialog = frameElement.dialog; //调用页面的dialog对象(ligerui对象)
-
- $().ready(function (){
- var receiptinformation = dialog.get("receiptinformation");
- $("#opinion").val(receiptinformation);
- });
- </script>
- </head>
- <body>
- <div class="panel">
- <div class="panel-top">
- <div class="tbar-title">
- <span class="tbar-label">审批意见</span>
- </div>
- </div>
- <div class="panel-body">
- <form id="frmComm">
- <table class="table-detail" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <th>审批意见:</th>
- <td>
- <textarea rows="6" cols="50" style="width:300px" id="opinion" name="opinion" validate={required:true,maxLength:500} readonly ></textarea>
- </td>
- </tr>
- </table>
- </form>
- </div>
- </div>
- </body>
- </html>
|