syscheckset.jsp 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <%@ page language="java" contentType="text/html; charset=utf-8"
  2. pageEncoding="utf-8"%>
  3. <%
  4. request.setCharacterEncoding("utf-8");
  5. String path = request.getContextPath();
  6. String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
  7. %>
  8. <!DOCTYPE html>
  9. <html>
  10. <head>
  11. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  12. <link rel="stylesheet" href="<%=basePath %>resource/ext/resources/css/ext-all-gray.css" type="text/css"></link>
  13. <link rel="stylesheet" href="<%=basePath %>resource/css/main.css" type="text/css"></link>
  14. <link rel="stylesheet" type="text/css" href="<%=basePath %>resource/ux/css/CheckHeader.css" />
  15. <style type="text/css">
  16. .x-form-field-cir-focus{
  17. -moz-box-shadow:1px 1px 2px rgba(0,0,0,.2);
  18. -webkit-box-shadow:1px 1px 2px rgba(0,0,0,.2);
  19. box-shadow:1px 1px 2px rgba(0,0,0,.2);
  20. -moz-border-radius:5px;
  21. -webkit-border-radius:5px;
  22. border-radius:5px;
  23. background: #ffffff !important;
  24. border: 1px solid #CD950C !important;
  25. }
  26. </style>
  27. <script type="text/javascript" src="<%=basePath %>resource/ext/ext-all.js"></script>
  28. <script type="text/javascript" src="<%=basePath %>resource/i18n/i18n.js"></script>
  29. <script type="text/javascript" src="<%=basePath %>resource/ux/CheckColumn.js"></script>
  30. <script type="text/javascript" src="<%=basePath %>resource/ux/RowExpander.js"></script>
  31. <script type="text/javascript">
  32. Ext.Loader.setConfig({
  33. enabled: true
  34. });
  35. Ext.application({
  36. name: 'erp',
  37. appFolder: basePath+'app',
  38. controllers: [
  39. 'ma.SysCheckSet'
  40. ],
  41. launch: function() {
  42. Ext.create('erp.view.ma.SysCheckSet');
  43. }
  44. });
  45. var caller = "SysCheckFormula!Set";
  46. var formCondition = '';
  47. var gridCondition = '1=1';
  48. </script>
  49. </head>
  50. <body >
  51. </body>
  52. </html>