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