index.html 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8" />
  5. <meta http-equiv="x-ua-compatible" content="ie=edge" />
  6. <meta title="description" content="" />
  7. <meta title="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
  8. <meta name="viewport" content="initial-scale=1.0, width=device-width, user-scalable=no" />
  9. <link rel="icon" href="../assets/img/favicon.ico">
  10. <title>关于我们</title>
  11. <link rel="stylesheet" href="../assets/css/bootstrap.min.css" />
  12. <!--====== Owl Carousel css ======-->
  13. <link rel="stylesheet" href="../assets/css/slick.css" />
  14. <!--====== Mean Menu ======-->
  15. <link rel="stylesheet" href="../assets/css/meanmenu.min.css" />
  16. <!--====== Default css ======-->
  17. <link rel="stylesheet" href="../assets/css/default.css" />
  18. <!--====== Style css ======-->
  19. <link rel="stylesheet" href="../assets/css/style.css" />
  20. <!--====== home css ====== -->
  21. <link rel="stylesheet" href="../assets/css/home.css" />
  22. <!--====== index css ====== -->
  23. <link rel="stylesheet" href="./css/index.css" />
  24. </head>
  25. <body>
  26. <!--[if lte IE 9]>
  27. <p class="browserupgrade">请使用chrome,IE11等现代浏览器,浏览本网站.</p>
  28. <![endif]-->
  29. <div id="app">
  30. <!--====== HEADER START ======-->
  31. <header class="header-absolute sticky-header">
  32. <div class="custom-container-one">
  33. <div class="mainmenu-area container d-flex align-items-center justify-content-center">
  34. <div class="logo">
  35. <a href="/index.html"><img src="../assets/img/logo-white.png" alt="uskylogo"></a>
  36. </div>
  37. <div class="d-flex align-items-center ">
  38. <nav class="main-menu">
  39. <div class="menu-items">
  40. <ul v-if="columnList" >
  41. <li v-for="item in columnList" :key="item.id" :class="
  42. currentPath==item.sname? 'active':''" >
  43. <a :href="`${item.sname}?id=${item.id}`">{{item.categoryName}}</a>
  44. <ul class="submenu" >
  45. <li v-if="item.children" v-for="aa in item.children" :key="aa.id"><a :href="`${item.sname}?id=${aa.id}`"> <span style="font-weight:bold;margin-right:10px">·</span> {{aa.sname}}</a></li>
  46. </ul>
  47. </li>
  48. </ul>
  49. </div>
  50. </nav>
  51. <div class="apply-expre" v-if="columnList.length>0" >申请体验</div>
  52. </div>
  53. </div>
  54. <div>
  55. <div class="mobile-menu"></div>
  56. </div>
  57. </div>
  58. </header>
  59. <!--====== HEADER END ======-->
  60. <!--====== COMMON BREADCRUMB START ======-->
  61. <section class="common-bradcrumb-section inner-banner">
  62. <img src="../assets/img/about/bg.png" alt="">
  63. </section>
  64. <!--====== COMMON BREADCRUMB END ======-->
  65. <!--====== ABOUT INTRODUCE START======-->
  66. <section class="about-introduce-section pt-40 pb-60 about-sec">
  67. <div class="container">
  68. <!-- <ul class="aboutTyes" >
  69. <li class="active">公司介绍</li>
  70. <li>企业文化</li>
  71. <li>公司介绍</li>
  72. <li>企业文化</li>
  73. <li>公司介绍</li>
  74. <li>企业文化</li>
  75. </ul> -->
  76. <div class="section-title text-center both-border pb-20">
  77. <span class="title-tag">企业简介</span>
  78. </div>
  79. <div class="about-intro-top">
  80. <p :class="ind != array.about_us.length-1 ? 'pb-40' : ''" v-for="(aboutUs,ind) in array.about_us">
  81. {{aboutUs.content}}</p>
  82. </div>
  83. </div>
  84. </section>
  85. <!--====== ABOUT INTRODUCE END======-->
  86. <!--====== HISTORY START======-->
  87. <section class="history-section pt-60 pb-60 about-sec">
  88. <div class="section-title text-center both-border pb-20">
  89. <span class="title-tag">企业优势</span>
  90. </div>
  91. <div class="container" style="background-color: #ffff;">
  92. <div class="row historyContent">
  93. <div class="pb-50 col-md-6 historyConet" v-for="strength in array.strength">
  94. <div class="row">
  95. <div class="col-md-3 hisImg">
  96. <img :src="strength.picture" alt="">
  97. </div>
  98. <div class="col-md-9 hisContent">
  99. <div>{{strength.title}}</div>
  100. <div>{{strength.content}}</div>
  101. </div>
  102. </div>
  103. </div>
  104. </div>
  105. </div>
  106. </section>
  107. <!--====== HISTORY END======-->
  108. <!--====== COURSE START======-->
  109. <section class="course-section pt-60 pb-80 about-sec">
  110. <div class="container">
  111. <div class="section-title text-center both-border pb-30">
  112. <span class="title-tag">发展历程</span>
  113. </div>
  114. <div class="row">
  115. <div class="col-md-12" v-for="history in array.history">
  116. <img :src="history.picture" alt="">
  117. </div>
  118. </div>
  119. </div>
  120. </section>
  121. <!--====== COURSE END======-->
  122. <!--====== credential START======-->
  123. <section class="history-section pt-60 pb-60 about-sec">
  124. <div class="container">
  125. <div class="section-title text-center both-border pb-20">
  126. <span class="title-tag">企业荣誉</span>
  127. </div>
  128. <div class="credentialContent" style="background-color: #ffff;">
  129. <div class="title mb-30">2005~2021年度高新技术企业</div>
  130. <div class="row">
  131. <div class="col-md-6 listAll">
  132. <div class="row">
  133. <div class="col-md-6 list">
  134. <ul>
  135. <li v-for="honour_one in array.honour_one">
  136. <span class="borderRadius1">
  137. <span class="borderRadius2"></span>
  138. </span>
  139. {{honour_one.title}}
  140. </li>
  141. <li>
  142. <span class="borderRadius1">
  143. <span class="borderRadius2"></span>
  144. </span>
  145. ......
  146. </li>
  147. </ul>
  148. </div>
  149. <div class="col-md-6 list">
  150. <ul>
  151. <li v-for="honour_two in array.honour_two">
  152. {{honour_two.title}}
  153. </li>
  154. </ul>
  155. </div>
  156. </div>
  157. </div>
  158. <div class="col-md-6 listAll">
  159. <div class="row">
  160. <div class="col-md-4 list1" v-for="certificate_one in array.certificate_one">
  161. <img :src="certificate_one.picture" alt="">
  162. </div>
  163. </div>
  164. </div>
  165. </div>
  166. <div class="mt-50" id="marquee_box">
  167. <div id="marquee_img">
  168. <div id="marquee_img1">
  169. <img v-for="certificate_two in array.certificate_two" :src="certificate_two.picture" alt="">
  170. </div>
  171. <div id="marquee_img2">
  172. </div>
  173. </div>
  174. </div>
  175. </div>
  176. </div>
  177. </section>
  178. <!--====== credential END======-->
  179. <!--====== SUB COMPANY START======-->
  180. <section class="about-sub-company-section pt-60 pb-60 about-sec">
  181. <div class="container">
  182. <div class="section-title text-center both-border pb-40">
  183. <span class="title-tag">联系我们</span>
  184. </div>
  185. <div class="row bg-white about-shadow aboutContent">
  186. <div class="col-md-7 pr-40 aboutImg " id="allmap">
  187. <img src="../assets/img/about/baidu.jpg" alt="">
  188. </div>
  189. <div class="col-md-5 aboutcotn">
  190. <div class="border-buttom" v-for="company_news in array.company_news">
  191. <div class="title">{{company_news.name}}</div>
  192. <div class="content" v-if="company_news.address != null && company_news.address != ''">公司地址:{{company_news.address}}</div>
  193. <div class="content" v-if="company_news.phone != null && company_news.phone != ''">联系电话:{{company_news.phone}}</div>
  194. <div class="content" v-if="company_news.add != null && company_news.add != ''">Add:{{company_news.add}}</div>
  195. </div>
  196. </div>
  197. </div>
  198. </div>
  199. </section>
  200. <!--====== SUB COMPANY END======-->
  201. <!--====== FOOTER PART START ======-->
  202. <footer>
  203. <!-- widgets -->
  204. <div class="footer-widget-area">
  205. <div class="container">
  206. <div class="row footerOne">
  207. <div class="col-lg-2 col-md-6 col-sm-6 footerWidth">
  208. <div class="copyrigt-or-code d-flex flex-column align-items-center ">
  209. <img width="130 " height="130 " src="https://aiot.usky.cn/uskyq/assets/img/qr_code.png">
  210. <span style="text-align: left;color:#fff;margin-top:10px ">微信公众号</span>
  211. </div>
  212. </div>
  213. <div class="footerNone" style="width:15% !important;" v-for="item in columnList" :key="item.id">
  214. <div class="widget nav-widget d-flex justify-content-center ">
  215. <div >
  216. <h5 class="widget-title"><a href="/solution/index.html">{{item.categoryName}}</a></h5>
  217. <ul>
  218. <li v-if="item.children" v-for="r in item.children" :key="r.id">
  219. <a :href="`${item.sname}?id=${r.id}`"> {{r.sname}}</a>
  220. </li>
  221. </ul>
  222. </div>
  223. </div>
  224. </div>
  225. </div>
  226. </div>
  227. </div>
  228. <!-- copyright -->
  229. <div class="copy-right-area ">
  230. <div class="container ">
  231. <div class="row copyrigt-text ">
  232. <div class="col-lg-12 ">
  233. <p>Copyright © 2001- 2022 Usky. All Rights Reserved. 永天股份 版权所有</p>
  234. <p>增值电信业务经营许可证(IDC、ISP)编号B2-20080010</p>
  235. </div>
  236. </div>
  237. </div>
  238. </div>
  239. </footer>
  240. <!--====== FOOTER PART END ======-->
  241. </div>
  242. <script src="../assets/js/vendor/modernizr-3.6.0.min.js"></script>
  243. <script src="../assets/js/vendor/jquery-1.12.4.min.js"></script>
  244. <!--====== Bootstrap js ======-->
  245. <script src="../assets/js/bootstrap.min.js"></script>
  246. <script src="../assets/js/popper.min.js"></script>
  247. <!--====== Mean Menu ======-->
  248. <script src="../assets/js/jquery.meanmenu.min.js"></script>
  249. <!--====== Main js ======-->
  250. <script src="../assets/js/main.js"></script>
  251. <!--====== Example Info js======-->
  252. <script src="../assets/js/exampleinfo.js"></script>
  253. <!--====== Setting Info js ======-->
  254. <script src="../assets/js/settinginfo.js"></script>
  255. <!--====== Vue js======-->
  256. <script src="../assets/js/vue.min.js"></script>
  257. <script src="../assets/js/commonVue.js"></script>
  258. <script type="text/javascript" src="http://api.map.baidu.com/api?v=2.0&ak=iXlsFGT8ySqgKzSZtjzSvLMpF0OxuCXS&servic
  259. es=true"></script>
  260. <script language="javascript">
  261. $(function() {
  262. $(".menu-items ul li").hover(function() {
  263. $(".erMenu>div").html("")
  264. $(this).addClass("menuactive").siblings().removeClass("menuactive");
  265. if ($(this).children("a").text() == "解决方案") {
  266. $(this).addClass("menuactive").siblings()
  267. var data = `
  268. <ul class="erMenuList">
  269. <li><a href="../solution/index.html?solution_type=1">智慧安防</a></li>
  270. <li><a href="../solution/index.html?solution_type=2">智慧消防</a></li>
  271. <li><a href="../solution/index.html?solution_type=3">智慧建筑能源管理</a></li>
  272. <li><a href="../solution/index.html?solution_type=4">智慧电力综合管理</a></li>
  273. <li><a href="../solution/index.html?solution_type=5">智慧园区无人机综合管理</a></li>
  274. <li><a href="../solution/index.html?solution_type=6">智慧楼宇综合运营</a></li>
  275. </ul>`
  276. $(".erMenu>div").append(data)
  277. $(".erMenu").fadeIn()
  278. } else {
  279. $(".erMenu").fadeOut()
  280. }
  281. });
  282. $(".erMenu").hover(function() {
  283. }, function() {
  284. $(".erMenu").fadeOut()
  285. })
  286. })
  287. setTimeout(() => {
  288. // 走马灯
  289. var speed = 10; //数字越大速度越慢
  290. var tab = document.getElementById("marquee_box");
  291. var tab1 = document.getElementById("marquee_img1");
  292. var tab2 = document.getElementById("marquee_img2");
  293. tab2.innerHTML = tab1.innerHTML;
  294. function Marquee() {
  295. if (tab2.offsetWidth - tab.scrollLeft <= 0)
  296. tab.scrollLeft -= tab1.offsetWidth
  297. else {
  298. tab.scrollLeft++;
  299. }
  300. }
  301. var MyMar = setInterval(Marquee, speed);
  302. tab.onmouseover = function() {
  303. clearInterval(MyMar)
  304. };
  305. tab.onmouseout = function() {
  306. MyMar = setInterval(Marquee, speed)
  307. };
  308. }, 1000)
  309. </script>
  310. <script type="text/javascript">
  311. //百度地图api
  312. $(function () {
  313. // 百度地图API功能
  314. var map = new BMap.Map("allmap", { enableMapClick: false });
  315. var point = new BMap.Point("121.25186","31.179117");
  316. var point2 = new BMap.Point("121.25186","31.179917"); //???
  317. map.centerAndZoom(point2, 15);
  318. var marker = new BMap.Marker(point); // 创建标注
  319. map.addOverlay(marker); // 将标注添加到地图中
  320. marker.setAnimation(BMAP_ANIMATION_BOUNCE); //跳动的动画
  321. //map.enableScrollWheelZoom(true); //开启鼠标滚轮缩放
  322. map.disableScrollWheelZoom(); //禁止鼠标滚轮缩放
  323. map.setZoom(20);
  324. // 添加带有定位的导航控件
  325. var navigationControl = new BMap.NavigationControl({
  326. // 靠左上角位置
  327. anchor: BMAP_ANCHOR_TOP_RIGHT,
  328. // LARGE类型
  329. type: BMAP_NAVIGATION_CONTROL_LARGE,
  330. // 启用显示定位
  331. enableGeolocation: true
  332. });
  333. map.addControl(navigationControl);
  334. // 添加定位控件
  335. var geolocationControl = new BMap.GeolocationControl();
  336. geolocationControl.addEventListener("locationSuccess", function (e) {
  337. // 定位成功事件
  338. var address = '';
  339. address += e.addressComponent.province;
  340. address += e.addressComponent.city;
  341. address += e.addressComponent.district;
  342. address += e.addressComponent.street;
  343. address += e.addressComponent.streetNumber;
  344. //alert("当前定位地址为:" + address);
  345. });
  346. geolocationControl.addEventListener("locationError", function (e) {
  347. // 定位失败事件
  348. alert(e.message);
  349. });
  350. map.addControl(geolocationControl);
  351. if ($(window).width() < 750) {
  352. map.disableDragging(); //禁止拖拽
  353. }
  354. })
  355. </script>
  356. </body>
  357. </html>