me_about.jsp 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
  2. <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
  3. <%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt" %>
  4. <%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn" %>
  5. <%
  6. String path = request.getContextPath();
  7. String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort() + path+"/";
  8. request.setAttribute("contextPath", basePath);
  9. String redirectUrl= request.getParameter("redirectUrl");
  10. request.setAttribute("redirectUrl", redirectUrl);
  11. %>
  12. <!DOCTYPE html>
  13. <html lang="en">
  14. <head>
  15. <meta charset="UTF-8">
  16. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  17. <meta name="apple-mobile-web-app-capable" content="yes">
  18. <meta name="apple-mobile-web-app-status-bar-style" content="black">
  19. <meta name="format-detection" content="telephone=no">
  20. <title>关于我们</title>
  21. <script src="${contextPath }app/lib/flexible.js"></script>
  22. <link rel="stylesheet" href="${contextPath }app/lib/flexible.css">
  23. <link rel="stylesheet" href="${contextPath }app/css/basem.css">
  24. <link rel="stylesheet" href="${contextPath }app/css/logome.css">
  25. </head>
  26. <body>
  27. <div class="titbox blubg">
  28. <a class="titreturn left" href="${contextPath }web/meWebCtl/me.cs"><img src="${contextPath }app/img/fanhui16@2x.png" alt=""></a>
  29. <h1>关于我们</h1>
  30. </div>
  31. <div class="whbg top50">
  32. <img class="meaboutimg" src="${contextPath }app/img/about_02.jpg" alt="">
  33. <div class="safe">
  34. <div class="meaboutit">
  35. <h2>东旭集团</h2>
  36. <p class="metime">(TUNGHSU GROUP)</p>
  37. </div>
  38. <div class="meaboutcon">
  39. <p> 东旭集团(TUNGHSU GROUP)成立于1997年,总部位于北京。东旭集团以振兴民族产业为己任,立志成为受人尊敬的中国实体产业先锋。公司旗下拥有东旭光电(000413)、东旭蓝天(000040)、嘉麟杰(002486)三家上市公司、两百余家全资及控股公司,业务遍及北京、上海、广东、西藏等20余个省、直辖市、自治区。</p>
  40. <p>在“实业报国”理念的指引下,东旭从装备制造起步,经过持续的战略升级与产业拓展,构建了光电显示材料、高端装备制造、石墨烯产业化应用、新能源与环保、产业园区、生态健康等多元产业板块。</p>
  41. <p>截止到2017年底,集团总资产近2000亿元,员工1.8万人。未来,东旭将继续秉承“感恩做人、敬业做事”的企业理念,通过“产融结合”的方式持续为产业固本强基,力争成为智能制造、智慧能源等多产业领域的引领者,打造国际知名的大型产业集团。</p>
  42. </div>
  43. </div>
  44. </div>
  45. </body>
  46. </html>