index.vue 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556
  1. <template>
  2. <div class="client-aboutUs-page">
  3. <!-- 关于我们banner栏 -->
  4. <div class="client-banner-box guanyu">
  5. <div
  6. :style="{backgroundImage: `url(${bannerList[0].pic || require(`~/static/images/client/train/train-banner-background.png`)})`}"
  7. class="client-platform-banner"></div>
  8. </div>
  9. <!-- 公司简介 -->
  10. <div class="company-profile-box client-container">
  11. <div class="my-img mta-hidden-xs">
  12. <i></i>
  13. </div>
  14. <div class="text-content">
  15. <h4>公司介绍</h4>
  16. <p>大连青谷软件有限公司成立于2013年10月。公司凭借成熟的项目研发和管理经验,致力于为客户提供全方位的在线教育解决方案,实现移动化、平台化、智能化学系管理模式,让学系变得更轻松。</p>
  17. <p>目前,青谷软件70%的员工拥有技术背景,这样可以保障我们在项目实施的各个环节(特别是售后服务),能第一时间为客户提供技术支持,让客户无后顾之忧。</p>
  18. </div>
  19. </div>
  20. <!-- 我们提供什么 -->
  21. <div class="brand-introduction-box client-container">
  22. <h4>我们提供什么</h4>
  23. <ul>
  24. <li>
  25. <div>
  26. <i class="mta-hidden-xs"></i>
  27. <p>在线考试系统租赁/采购</p>
  28. </div>
  29. </li>
  30. <li>
  31. <div>
  32. <i class="mta-hidden-xs"></i>
  33. <p>在线考试系统租赁/采购</p>
  34. </div>
  35. </li>
  36. <li>
  37. <div>
  38. <i class="mta-hidden-xs"></i>
  39. <p>课件定制开发服务</p>
  40. </div>
  41. </li>
  42. <li>
  43. <div>
  44. <i class="mta-hidden-xs"></i>
  45. <p>行业通用类课程资源</p>
  46. </div>
  47. </li>
  48. </ul>
  49. </div>
  50. <!-- 我么你始终专注教育系统研发,更懂用户需求 -->
  51. <div class="corporate-culture-box client-container mta-hidden-xs">
  52. <h4>我们始终专注教育系统研发</h4>
  53. <ul>
  54. <div :class="{next: nextList, prev: prevList}">
  55. <li v-for="(img,index) in imgList" :key="index">
  56. <img :src="img.url" alt="证书">
  57. </li>
  58. </div>
  59. <i class="img-btn-prev img-btn" @click="onPrev"></i>
  60. <i class="img-btn-next img-btn" @click="onNext"></i>
  61. </ul>
  62. </div>
  63. <div class="corporate-culture-box-h5 client-container mta-hidden-sm">
  64. <h4>我们始终专注教育系统研发</h4>
  65. <ul>
  66. <li v-for="(img,index) in imgList" :key="index">
  67. <img :src="img.url" alt="证书">
  68. </li>
  69. </ul>
  70. </div>
  71. <!-- 地图 -->
  72. <div class="contact-us-box mta-hidden-xs">
  73. <div class="my-map">
  74. <img :src="img2" alt="地图">
  75. <div class="img-right">
  76. <h3>联系我们</h3>
  77. <p>资讯QQ:956600477/3375245762</p>
  78. <p>联系电话:400-052-2130</p>
  79. <p>公司邮箱:service@llisoft.com</p>
  80. <p>公司地址:大连市沙河口区数码路北段25号201室</p>
  81. </div>
  82. </div>
  83. </div>
  84. <div class="contact-us-box-h5 client-container mta-hidden-sm">
  85. <div class="img-right-h5">
  86. <h3>联系我们</h3>
  87. <p>资讯QQ:956600477/3375245762</p>
  88. <p>联系电话:400-052-2130</p>
  89. <p>公司邮箱:service@llisoft.com</p>
  90. <p>公司地址:大连市沙河口区数码路北段25号201室</p>
  91. </div>
  92. <img :src="img2" alt="地图">
  93. </div>
  94. </div>
  95. </template>
  96. <script>
  97. import {BannerImgs} from "@/defaultConfig";
  98. export default {
  99. name: 'introduction',
  100. layout: 'templateB',
  101. async asyncData({$axios, store}) {
  102. const arr = [
  103. $axios.$post(`/home/banner/list`, {'code': BannerImgs.guanyuwomen}),
  104. ];
  105. const [res2] = await Promise.all(arr);
  106. return {
  107. bannerList: res2.data.data || [],
  108. }
  109. },
  110. data() {
  111. return {
  112. imgList: [
  113. {
  114. url: require("~/static/gangweiIcon/z125.png")
  115. },
  116. {
  117. url: require("~/static/gangweiIcon/z125.png")
  118. },
  119. {
  120. url: require("~/static/gangweiIcon/z125.png")
  121. },
  122. {
  123. url: require("~/static/gangweiIcon/z125.png")
  124. },
  125. {
  126. url: require("~/static/gangweiIcon/z125.png")
  127. },
  128. {
  129. url: require("~/static/gangweiIcon/z126.png")
  130. },
  131. {
  132. url: require("~/static/gangweiIcon/z127.png")
  133. },
  134. {
  135. url: require("~/static/gangweiIcon/z128.png")
  136. },
  137. ],
  138. prevList: true,
  139. nextList: false,
  140. img2: require('~/static/codeImage/ditu.png')
  141. };
  142. },
  143. head(){
  144. return {
  145. title: '麦塔考培系统_大连栋科软件工程有限公司',
  146. meta: [
  147. {
  148. name: 'keywords',
  149. content: '麦塔考试系统,麦塔培训系统'
  150. },
  151. {
  152. name:'description',
  153. content:'大连栋科软件工程有限公司是专业的教育软件与数字化资源服务供应商,创立于2007年,总部位于大连软件园。公司凭借成熟的项目研发和管理经验,致力于为客户提供全方位的在线教育解决方案,实现移动化、平台化、知识化、智能化学习管理模式,让学习变得更轻松。'
  154. }
  155. ],
  156. }
  157. },
  158. methods: {
  159. onPrev() {
  160. this.prevList = true;
  161. this.nextList = false;
  162. },
  163. onNext() {
  164. this.prevList = false;
  165. this.nextList = true;
  166. },
  167. }
  168. };
  169. </script>
  170. <style lang="scss">
  171. .company-profile-box {
  172. margin-top: 250px;
  173. display: flex;
  174. justify-content: space-between;
  175. .my-img {
  176. width: 416px;
  177. height: 560px;
  178. background-size: cover;
  179. background-repeat: no-repeat;
  180. background-position: center;
  181. background-image: url("~static/gangweiIcon/z120.png");
  182. flex-shrink: 0;
  183. i {
  184. display: inline-block;
  185. width: 188px;
  186. height: 86px;
  187. background-image: url("~static/gangweiIcon/z131.png");
  188. margin: 238px 0 0 114px;
  189. }
  190. }
  191. .text-content {
  192. margin-left: 150px;
  193. h4 {
  194. font-size: 30px;
  195. text-align: left;
  196. font-weight: 800;
  197. color: #333;
  198. margin-top: 180px;
  199. position: relative;
  200. &:before {
  201. content: '';
  202. display: inline-block;
  203. position: absolute;
  204. bottom: -10px;
  205. left: 0;
  206. width: 100px;
  207. height:3px;
  208. background: #00b96b;
  209. }
  210. }
  211. p {
  212. margin: 40px 0 0 0;
  213. }
  214. }
  215. }
  216. .brand-introduction-box {
  217. h4 {
  218. font-size: 30px;
  219. text-align: center;
  220. font-weight: 800;
  221. color: #333;
  222. margin-top: 180px;
  223. margin-bottom: 150px;
  224. position: relative;
  225. }
  226. ul {
  227. display: flex;
  228. flex-wrap: wrap;
  229. li {
  230. width: 50%;
  231. padding: 20px;
  232. box-sizing: border-box;
  233. >div {
  234. width: 100%;
  235. height: 242px;
  236. box-sizing: border-box;
  237. i {
  238. width: 100px;
  239. height: 100px;
  240. display: inline-block;
  241. background-position: center;
  242. background-repeat: no-repeat;
  243. background-size: contain;
  244. margin: 50px 0 24px 150px;
  245. }
  246. p {
  247. width: 260px;
  248. margin: 0 0 0 66px;
  249. font-size: 24px;
  250. color: #fff;
  251. font-weight: 500;
  252. }
  253. }
  254. &:nth-child(1) {
  255. >div {
  256. background-image: url("~static/gangweiIcon/z116.png");
  257. i {
  258. background-image: url("~static/gangweiIcon/z121.png");
  259. }
  260. }
  261. }
  262. &:nth-child(2) {
  263. >div {
  264. background-image: url("~static/gangweiIcon/z117.png");
  265. i {
  266. background-image: url("~static/gangweiIcon/z122.png");
  267. }
  268. }
  269. }
  270. &:nth-child(3) {
  271. >div {
  272. background-image: url("~static/gangweiIcon/z118.png");
  273. i {
  274. background-image: url("~static/gangweiIcon/z123.png");
  275. }
  276. }
  277. }
  278. &:nth-child(4) {
  279. >div {
  280. background-image: url("~static/gangweiIcon/z119.png");
  281. i {
  282. background-image: url("~static/gangweiIcon/z124.png");
  283. }
  284. }
  285. }
  286. }
  287. }
  288. }
  289. .corporate-culture-box {
  290. position: relative;
  291. margin-bottom: 200px;
  292. h4 {
  293. font-size: 30px;
  294. text-align: center;
  295. font-weight: 800;
  296. color: #333;
  297. margin-top: 180px;
  298. margin-bottom: 150px;
  299. }
  300. ul {
  301. position: relative;
  302. overflow: hidden;
  303. >div {
  304. display: flex;
  305. box-sizing: border-box;
  306. transition: all 0.5s ease;
  307. &.next {
  308. transform: translate(-100%);
  309. }
  310. &.prev {
  311. transform: translate(0);
  312. }
  313. }
  314. li {
  315. padding: 20px;
  316. width: 25%;
  317. margin: 0 auto;
  318. text-align: center;
  319. flex-shrink: 0;
  320. box-sizing: border-box;
  321. img {
  322. width: 221px;
  323. height: 298px;
  324. }
  325. }
  326. .img-btn {
  327. display: inline-block;
  328. width: 33px;
  329. height: 33px;
  330. cursor: pointer;
  331. background-size: contain;
  332. background-position: center;
  333. background-repeat: no-repeat;
  334. }
  335. .img-btn-prev {
  336. position: absolute;
  337. left: 0px;
  338. top: 150px;
  339. background-image: url('~static/gangweiIcon/z129.png');
  340. }
  341. .img-btn-next {
  342. position: absolute;
  343. right: 0px;
  344. top: 150px;
  345. background-image: url('~static/gangweiIcon/z130.png');
  346. }
  347. }
  348. }
  349. .corporate-culture-box-h5 {
  350. h4 {
  351. font-size: 18px;
  352. text-align: center;
  353. font-weight: 800;
  354. color: #333;
  355. margin-top: 10%;
  356. margin-bottom: 10%;
  357. }
  358. ul {
  359. display: flex;
  360. flex-wrap: wrap;
  361. li {
  362. width: 50%;
  363. padding: 20px;
  364. box-sizing: border-box;
  365. img {
  366. width: 100%;
  367. height: 100%;
  368. box-sizing: border-box;
  369. }
  370. }
  371. }
  372. }
  373. .contact-us-box {
  374. width: 100%;
  375. height: 500px;
  376. background-image: url("~static/gangweiIcon/z132.png");
  377. margin-bottom: 260px;
  378. position: relative;
  379. .my-map {
  380. position: absolute;
  381. top: 246px;
  382. left: 50%;
  383. width: 880px;
  384. height: 332px;
  385. transform: translate(-50%);
  386. display: flex;
  387. img {
  388. flex: 1;
  389. height: 100%;
  390. }
  391. .img-right {
  392. background: #00b96b;
  393. flex-shrink: 0;
  394. width: 346px;
  395. height: 100%;
  396. padding: 20px;
  397. box-sizing: border-box;
  398. h3 {
  399. font-size: 24px;
  400. font-weight: 800;
  401. color: #fff;
  402. margin-bottom: 24px;
  403. }
  404. p {
  405. font-size: 18px;
  406. font-weight: 400;
  407. color: #fff;
  408. margin-bottom: 14px;
  409. line-height: 33px;
  410. }
  411. }
  412. }
  413. }
  414. .contact-us-box-h5 {
  415. margin-top: 20px;
  416. margin-bottom: 30px;
  417. .img-right-h5 {
  418. h3 {
  419. font-size: 18px;
  420. font-weight: 800;
  421. margin-bottom: 20px;
  422. text-align: center;
  423. }
  424. p {
  425. font-size: 14px;
  426. font-weight: 500;
  427. margin-bottom: 10px;
  428. }
  429. }
  430. img {
  431. width: 100%;
  432. height: auto;
  433. }
  434. }
  435. .client-banner-box.guanyu {
  436. height: 320px;
  437. .client-platform-banner {
  438. height: 320px;
  439. }
  440. }
  441. @media (max-width: 768px) {
  442. .company-profile-box {
  443. margin-top: 20px;
  444. .text-content {
  445. margin: 0;
  446. h4 {
  447. margin-top: 20px;
  448. text-align: center;
  449. font-size: 24px;
  450. &:before {
  451. left: 50%;
  452. transform: translate(-50%);
  453. }
  454. }
  455. p {
  456. font-size: 14px;
  457. }
  458. }
  459. }
  460. .brand-introduction-box {
  461. h4 {
  462. font-size: 18px;
  463. text-align: center;
  464. font-weight: 800;
  465. color: #333;
  466. margin-top: 10%;
  467. margin-bottom: 10%;
  468. }
  469. p {
  470. font-size: 14px;
  471. }
  472. ul {
  473. li {
  474. width: 100%;
  475. >div {
  476. width: 100%;
  477. height: 120px;
  478. box-sizing: border-box;
  479. p {
  480. width: 100%;
  481. line-height: 120px;
  482. margin: 0;
  483. font-size: 14px;
  484. color: #fff;
  485. font-weight: 500;
  486. text-align: center;
  487. }
  488. }
  489. }
  490. }
  491. }
  492. .client-banner-box.guanyu {
  493. height: 90px;
  494. .client-platform-banner {
  495. height: 90px;
  496. }
  497. }
  498. }
  499. </style>