QcNavigation.jsp 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  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 style="height: 100%; background: transparent !important;">
  10. <head>
  11. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  12. <link rel="stylesheet"
  13. href="<%=basePath%>resource/ext/resources/css/ext-all-gray.css"
  14. type="text/css"></link>
  15. <link rel="stylesheet" href="<%=basePath%>resource/css/main.css"
  16. type="text/css"></link>
  17. <style type="text/css">
  18. .bodyc {
  19. width: 100%;
  20. height: 100%;
  21. position: absolute;
  22. /* background: #FFFFFF !important; */
  23. background: #F0F0F0 !important;
  24. }
  25. /* @media ( min-width : 1025px) {
  26. img {
  27. margin: 0 auto;
  28. }
  29. }
  30. @media ( max-width :1024px) {
  31. } */
  32. .cell {
  33. display: table-cell;
  34. vertical-align: middle;
  35. width: 100%;
  36. height: 100%;
  37. }
  38. /* 图片自动缩放*/
  39. .imgh {
  40. margin: 0 auto;
  41. max-width: 100%;
  42. height: auto;
  43. }
  44. .table {
  45. width: 100%;
  46. height: 100%;
  47. overflow: hidden;
  48. text-align: center;
  49. display: table;
  50. float: left;
  51. position: relative;
  52. }
  53. </style>
  54. <script type="text/javascript"
  55. src="<%=basePath%>resource/ext/ext-all.js"></script>
  56. <script type="text/javascript" src="<%=basePath%>resource/i18n/i18n.js"></script>
  57. </head>
  58. <body class="bodyc">
  59. <div class="table">
  60. <div class="cell">
  61. <img src="<%=basePath%>resource/images/sysnavigation/QC.png"
  62. class="imgh" border="0" usemap="#Map" />
  63. <map name="Map" id="Map">
  64. <!-- 客户资料列表 -->
  65. <!-- <area shape="rect" coords="13,11,151,50"
  66. href="javascript:openTable('客户资料列表','jsps/common/datalist.jsp?whoami=Customer','Customer');">
  67. 客户资料维护
  68. <area shape="rect" coords="163,11,196,50"
  69. href="javascript:openTable('客户资料维护','jsps/scm/sale/customerBase.jsp','Customer!Base');">
  70. 客户估价单列表
  71. <area shape="rect" coords="267,11,407,50"
  72. href="javascript:openTable('估计单列表','jsps/common/datalist.jsp?whoami=Evaluation','Evaluation');">
  73. 客户估价单维护
  74. <area shape="rect" coords="413,11,448,50"
  75. href="javascript:openTable('估价单维护','jsps/scm/sale/evaluation.jsp','Evaluation');"> -->
  76. </map>
  77. </div>
  78. </div>
  79. </body>
  80. </html>