index.vue 13 KB

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