schoolListPage.html 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <link rel="shortcut icon" href="favicon.ico"/>
  6. <meta name="Generator" content="EditPlus®">
  7. <meta name="Author" content="">
  8. <meta name="Keywords" content="">
  9. <meta name="Description" content="">
  10. <title></title>
  11. <meta name="viewport" content="width=device-width,initial-scale=1,user-scalable=0">
  12. <link rel="stylesheet" href="${contextPath}/WebPages_170421/css/supermarket/schoolList.css">
  13. <script type="text/javascript" src="${contextPath}/WebPages_170421/js/jquery.js"></script>
  14. <script type="text/javascript" src="${contextPath}/WebPages_170421/js/supermarket/productDetails.js"></script>
  15. <script type="text/javascript" src="${contextPath}/WebPages_170421/js/jquery-1.11.1.min.js"></script>
  16. <script type="text/javascript" src="${contextPath}/WebPages_170421/js/jquery-1.4.2.js"></script>
  17. <style type="text/css">
  18. .main {
  19. margin-top: 10px auto;
  20. width: 1200px;
  21. height: 1744px !important;
  22. }
  23. .page {
  24. height: 28px;
  25. margin-left: 380px;
  26. margin-top: 30px !important;
  27. }
  28. .qys:nth-child(5) {
  29. margin-bottom:0px !important;
  30. }
  31. </style>
  32. <script type='text/javascript'>
  33. function tim(){
  34. var date = new Date();
  35. var seperator1 = "-";
  36. var year = date.getFullYear();
  37. var month = date.getMonth() + 1;
  38. var strDate = date.getDate();
  39. if (month >= 1 && month <= 9) {
  40. month = "0" + month;
  41. }
  42. if (strDate >= 0 && strDate <= 9) {
  43. strDate = "0" + strDate;
  44. }
  45. var mydate=new Date();
  46. var myddy=mydate.getDay();
  47. var weekday=["星期日","星期一","星期二","星期三","星期四","星期五","星期六"];
  48. document.getElementById('days').innerHTML=year+seperator1+month+seperator1+strDate+'&nbsp;&nbsp;'+weekday[myddy];
  49. }
  50. setInterval(tim,1000);
  51. </script>
  52. </head>
  53. <body>
  54. <div class="wrapper">
  55. <%include("/WebPages_170421/commonPage/menu.html"){}%>
  56. <div class="main" style=" height:1364px !important;">
  57. <div class="oneleft">
  58. <ul>
  59. <li><a href="#"><img src="${contextPath}/WebPages_170421/img/supermarket/keji.jpg" style="vertical-align: middle;"> 商务分类</a></li>
  60. <li><a href="${contextPath}/Supermarket/toEnterprisePage?storetype=GXYS">高校院所</a></li>
  61. <li><a href="">科研院所</a></li>
  62. <li><a href="${contextPath}/Supermarket/toEnterprisePage?storetype=QYJT">科技企业</a></li>
  63. <li><a href="${contextPath}/Supermarket/toEnterprisePage?storetype=JGTT">机构团体</a></li>
  64. <li><a href="${contextPath}/Supermarket/toProductTypePage?producttype=YJKF">研发服务</a></li>
  65. <li><a href="${contextPath}/Supermarket/toProductTypePage?producttype=JSCG">技术成果</a></li>
  66. <li><a href="${contextPath}/Supermarket/toProductTypePage?producttype=CXCP">创新产品</a></li>
  67. <li><a href="${contextPath}/Supermarket/toProductTypePage?producttype=ZXFW">咨询服务</a></li>
  68. <li><a href="${contextPath}/Talent/toTech">创新人才</a></li>
  69. </ul>
  70. </div>
  71. <div class="list">
  72. <div class="sou">
  73. <form class="sout" action="${contextPath}/Supermarket/search?type=ALL" method="post">
  74. <select name="type">
  75. <option value="">全部类型</option>
  76. <option value="">重本大学</option>
  77. <option value="">二级本科</option>
  78. <option value="">三级本科</option>
  79. <option value="">高等专科</option>
  80. </select>
  81. </form>
  82. <form class="soub" action="${contextPath}/Supermarket/search?type=ZGX" method="post">
  83. <input type="text" name="name" style="width:355px;" placeholder="请输入名称">
  84. <button><img src="${contextPath}/WebPages_170421/img/homepage/search.jpg"><span>搜索</span></button>
  85. </form>
  86. </div>
  87. <div style="background:#fff; height:1284px;">
  88. <!-- <div style="background:#fff; height:1094px;"> -->
  89. <div class="listtitle">
  90. <h2>高校院所</h2>
  91. </div>
  92. <div class="wai">
  93. <div style="min-height:925px;">
  94. <%for(store in storelist){%>
  95. <div class="qys">
  96. <div class="qyleft">
  97. <div class="qyleft1">
  98. <%if(store.imagePath!'' != ''){%>
  99. <img src="${contextPath}/imageFile/getImage?imagePath=${store.imagePath!''}">
  100. <%}else{%>
  101. <img src="${contextPath}/WebPages_170421/img/logo.gif">
  102. <%}%>
  103. </div>
  104. <div class="qyleft2">
  105. <div class="qytop">${store.name!''}</div>
  106. <div class="qybot">高校网址:<span>www.jlu.edu.cn</span> </div>
  107. <div class="qybot">高校类别:<span>${store.storetypeName!''}</span> </div>
  108. <div class="qybot">高校地址:<span>${store.addr!''}</span> </div>
  109. </div>
  110. </div>
  111. <div class="qyleft">
  112. <div class="qyleft1">
  113. <%if(store.imagePath!'' != ''){%>
  114. <img src="${contextPath}/imageFile/getImage?imagePath=${store.imagePath!''}">
  115. <%}else{%>
  116. <img src="${contextPath}/WebPages_170421/img/logo.gif">
  117. <%}%>
  118. </div>
  119. <div class="qyleft2">
  120. <div class="qytop">${store.name!''}</div>
  121. <div class="qybot">高校网址:<span>www.jlu.edu.cn</span> </div>
  122. <div class="qybot">高校类别:<span>${store.storetypeName!''}</span> </div>
  123. <div class="qybot">高校地址:<span>${store.addr!''}</span> </div>
  124. </div>
  125. </div>
  126. </div>
  127. <%}elsefor{%>
  128. <p style="width: 1118px; padding-left:20px; height: 600px; margin: 33px 0 0 0;">无相关企业</p>
  129. <%}%>
  130. </div>
  131. <%include("/WebPages_170421/commonPage/c_paginate.html", {"currentPage": pageNumber!1, "totalPage": totalPage!1, "totalRow": totalRow!0, "actionUrl": contextPath+"/Supermarket/toEnterprisePage?typeCode=" + typeCode! + "&type=" + type! + "&pageNumber=", "urlParas": urlParas!''}){}%>
  132. </div>
  133. </div>
  134. </div>
  135. </div>
  136. <div class="footer">
  137. <div>
  138. <p>版权所有:吉林省计算中心</p>
  139. <p>技术支持:长春市福瑞科技有限公司</p>
  140. <p>邮编:130000</p>
  141. <p>传真:239823982</p>
  142. <p>地址:吉林省长春市朝阳区前进大街1244号</p>
  143. <p>电话:0431-1234567</p>
  144. <p>邮箱:123456@163.com</p></div>
  145. </div>
  146. </div></div>
  147. <script type="text/javascript">
  148. </script>
  149. </body>
  150. </html>