sysOfficeTemplateDialog.jsp 879 B

123456789101112131415161718192021222324252627
  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. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  6. <title>选择office模板</title>
  7. <script type="text/javascript">
  8. /*KILLDIALOG*/
  9. var dialog = frameElement.dialog; //调用页面的dialog对象(ligerui对象)
  10. function getTemplate(templateId,subject,path){
  11. var obj={templateId:templateId,subject:subject,path:path};
  12. //window.returnValue=obj;
  13. dialog.get('sucCall')(obj);
  14. dialog.close();
  15. }
  16. </script>
  17. <style type="text/css">
  18. div.bottom{text-align: center;padding-top: 10px;}
  19. html,body{padding:0px; margin:0; width:100%;height:100%;overflow: hidden;}
  20. </style>
  21. </head>
  22. <body>
  23. <iframe src="selector.ht?templatetype=${type}" width="100%" height="100%" frameborder="0"></iframe>
  24. </body>
  25. </html>