index.html 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219
  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 name="description" content="" />
  7. <meta name="keywords" content="" />
  8. <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
  9. <link rel="icon" href="assets/img/favicon.ico">
  10. <title></title>
  11. <!--====== bootstrap css ====== -->
  12. <link rel="stylesheet" href="assets/css/bootstrap.min.css" />
  13. <!--====== element css https://cdn.bootcdn.net/ajax/libs/element-plus/2.3.3/index.css====== -->
  14. <link rel="stylesheet" href="assets/css/element.css" rel="stylesheet">
  15. <!--====== Mean Menu ======-->
  16. <link rel="stylesheet" href="assets/css/meanmenu.min.css" />
  17. <!--====== Default css ======-->
  18. <link rel="stylesheet" href="assets/css/default.css" />
  19. <!--====== Animation css =======-->
  20. <link rel="stylesheet" href="assets/css/animation.css" />
  21. <!--====== animate css ======-->
  22. <link rel="stylesheet" href="assets/css/animate.min.css" />
  23. <!--====== Style css ======-->
  24. <link rel="stylesheet" href="assets/css/style.css" />
  25. <!--====== home css ====== -->
  26. <link rel="stylesheet" href="assets/css/home.css" />
  27. <!--====== jquery js ======-->
  28. <script src="assets/js/vendor/jquery-1.12.4.min.js "></script>
  29. <!--====== Bootstrap js ======-->
  30. <script src="assets/js/bootstrap.min.js "></script>
  31. <!--====== Vue js https://unpkg.com/vue@3.2.36/dist/vue.global.prod.js ======-->
  32. <script src="assets/js/vue.min.js"></script>
  33. <!--====== Element js https://cdn.bootcdn.net/ajax/libs/element-plus/2.3.3/index.full.js ======-->
  34. <script src="assets/js/element/index.js"></script>
  35. <!--====== Mean Menu ======-->
  36. <script src="assets/js/jquery.meanmenu.min.js "></script>
  37. <!--====== Setting Info js ======-->
  38. <script src="assets/js/settinginfo.js"></script>
  39. <!--====== Main js ======-->
  40. <script src="assets/js/main.js "></script>
  41. <!--====== commonVue js ======-->
  42. <script type="module" src="assets/js/commonVue.js "></script>
  43. <!-- //引入微信的js,以及写入以下js (IOS解决方案)-->
  44. <script type="text/javascript" src="https://res.wx.qq.com/open/js/jweixin-1.2.0.js"></script>
  45. <script>
  46. document.addEventListener("WeixinJSBridgeReady", function () {
  47. document.getElementById("videoPlay").play();
  48. }, false);
  49. </script>
  50. </head>
  51. <body>
  52. <!--[if lte IE 9]>
  53. <p class="browserupgrade">请使用chrome,IE11等现代浏览器,浏览本网站.</p>
  54. <![endif]-->
  55. <div id="app" >
  56. <div class="appInner" :style="{'display':'block'}">
  57. <div>
  58. <!-- LOADING START -->
  59. <div v-if="loading" class="loadingBox">
  60. <loading-com></loading-com>
  61. </div>
  62. <!-- LOADING END -->
  63. <!-- FEEDBACK START -->
  64. <feed-fix></feed-fix>
  65. <!-- FEEDBACK END -->
  66. <!-- DIALOG START-->
  67. <dialog-com @data-event="handleChildEvent" :fatherdialogv="centerDialogVisible" :ruleform="ruleForm"
  68. :fatherrules="rules" :fatherdialoga="dialogDataArray"></dialog-com>
  69. <!-- DIALOG END -->
  70. </div>
  71. <!--====== HEADER START ======-->
  72. <header-com @data-event="goApply" :todo="columnList" :currentone="currentPath"></header-com>
  73. <el-row class="tac mobile" style=" top: 85px;
  74. position: absolute;
  75. width: 100%;
  76. z-index: 2;">
  77. <el-col :span="24">
  78. <el-menu
  79. active-text-color="#ffd04b"
  80. background-color="#545c64"
  81. class="el-menu-vertical-demo"
  82. default-active="2"
  83. text-color="#fff"
  84. @open="handleOpen"
  85. @close="handleClose"
  86. >
  87. <el-menu-item index="1">
  88. <icon-menu />
  89. <span>Navigator 1</span>
  90. </el-menu-item>
  91. <el-sub-menu index="2">
  92. <template #title>
  93. <location />
  94. <span>Navigator 2</span>
  95. </template>
  96. <el-menu-item-group title="">
  97. <el-menu-item index="2-1">item one</el-menu-item>
  98. <el-menu-item index="2-2">item two</el-menu-item>
  99. </el-menu-item-group>
  100. </el-sub-menu>
  101. <el-sub-menu index="3">
  102. <template #title>
  103. <location />
  104. <span>Navigator 3</span>
  105. </template>
  106. <el-menu-item-group title="">
  107. <el-menu-item index="3-1">item one</el-menu-item>
  108. <el-menu-item index="3-2">item two</el-menu-item>
  109. </el-menu-item-group>
  110. </el-sub-menu>
  111. <el-menu-item index="4">
  112. <setting />
  113. <span>Navigator 4</span>
  114. </el-menu-item>
  115. </el-menu>
  116. </el-col>
  117. </el-row>
  118. <!--====== HEADER END ======-->
  119. <div class="video-section">
  120. <div v-if="modelType==1"
  121. style="width:100%;height:100%;background-size:cover;background-position:center center;background-repeat:no-repeat;"
  122. v-bind:style="{backgroundImage:'url('+columnImage+')'}"></div>
  123. <video webkit-playsinline="webkit-playsinline" playsinline v-else id="videoPlay" autoplay loop muted preload="auto" poster="assets/img/banner/poster.jpg"
  124. style="width:100%;height:100%;object-fit:fill;">
  125. <source type="video/mp4">
  126. </video>
  127. <div class="video-des">
  128. <div class="des1">
  129. <p class="animate__animated animate__fadeInUp">公司成立<span class="num1">20年</span>,围绕行业细分,累计服务超过
  130. <span class="num1">5000</span> 家企业,近<span class="num1"> 10万 </span>个用户</p>
  131. </div>
  132. <div class="des2 desCom animate__animated animate__flipInX"
  133. style="top:43%; left:0;width:100%;text-align:center">
  134. <p>核心价值观</p>
  135. <span>一起梦想,一起成长,一起分享</span>
  136. </div>
  137. <div class="des3 desCom animate__animated animate__lightSpeedInLeft" style="top:65%; left:20%;">
  138. <p>企业使命</p>
  139. <span>用数字化手段助力客户融入数智时代</span>
  140. </div>
  141. <div class="des4 desCom animate__animated animate__lightSpeedInRight" style="top:65%; right:25%;">
  142. <p>企业愿景</p>
  143. <span>成为智慧数字产业的领跑者</span>
  144. </div>
  145. </div>
  146. <span class="go_down" @click="goDown()" ref="scrollElement"></span>
  147. </div>
  148. <section v-if="columnList.length>1&&contentBoolean">
  149. <!--====== WHYUS SECTION START ======-->
  150. <div class="whyUs-section pt-60 pb-60" v-for="(arr,index) in articalArray"
  151. :style="{background:(index % 2 == 1?'#F4F8FD':'#fff')}">
  152. <div class="container">
  153. <div class="section-title text-center both-border pb-20">
  154. <span class="title-tag">{{arr.title}}</span>
  155. <span class="mb-30">{{arr.zhaiyao}}</span>
  156. </div>
  157. <!-- 图文混排 -->
  158. <div class="row" v-if="arr.image" class="aboutOnlyText "
  159. :style="{padding:(index % 2 == 1?'40px 25px':' 40px 25px')}"
  160. style="background-color: #ffff; box-shadow: 0px 10px 20px 10px rgb(179 202 216 / 20%); align-items:center">
  161. <div class="col-md-6 pr-40 aboutImg text-center ">
  162. <img :src="arr.image" alt="">
  163. </div>
  164. <div class="col-md-6" v-html="arr.content">
  165. </div>
  166. </div>
  167. <!-- 只有富文本 -->
  168. <div class="aboutOnlyText row text-center" v-else :style="{padding:(index % 2 == 1?'':'0 ')}"
  169. style="background-color: #ffff;">
  170. <div class=" about-text-image" v-html="arr.content">
  171. </div>
  172. </div>
  173. </div>
  174. </div>
  175. <!--====== WHYUS SECTION END ======-->
  176. </section>
  177. <!--====== FOOTER PART START ======-->
  178. <footer-com v-if="columnList.length>1&&footerBoolean" :todo="columnList"></footer-com>
  179. <!--====== FOOTER PART END ======-->
  180. </div>
  181. </div>
  182. </body>
  183. </html>