peixun.vue 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226
  1. <template>
  2. <div class="client-platform-page client-train-page">
  3. <!-- 培训平台页 banner栏 -->
  4. <div class="client-platform-banner">
  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. <span class="client-platform-content">
  9. <h3>在线考试就用青谷</h3>
  10. <p>一款简单好用的考试系统</p>
  11. <onlineInformationBtn />
  12. </span>
  13. </div>
  14. <!-- 产品体验 -->
  15. <div class="platform-products-experience client-container">
  16. <h4 class="client-title">产品体验</h4>
  17. <p class="client-subtitle-one-row">无序注册,即可免费体验青谷在线考试系统</p>
  18. <!-- 多端体验 -->
  19. <chanPinTiYan></chanPinTiYan>
  20. </div>
  21. <!-- 直播系列 -->
  22. <div class="platform-products-experience">
  23. <h4 class="client-title"> [青谷] 学测考练一站式在线培训系统 </h4>
  24. <img src="#">
  25. </div>
  26. <!-- 功能强大的培训系统 -->
  27. <div class="platform-products-services client-container">
  28. <h4 class="client-title">功能强大的培训系统</h4>
  29. <imgCardLv3 :option="item" v-for="(item,index) in productList" :key="index">
  30. <div class="btn-groups">
  31. <freeTrialBtn class="free-train-btn btn-item" v-if="item.mianfei" :myType="item.myType"/>
  32. <onlineInformationBtn class="online-information-btn btn-item" v-if="item.zixun"/>
  33. </div>
  34. </imgCardLv3>
  35. </div>
  36. <!-- 青谷在线培训系统四大优势 -->
  37. <div class="platform-products-services">
  38. <h4 class="client-title">青谷在线培训系统四大优势</h4>
  39. <ul>
  40. <li>
  41. <div class="card-container">
  42. <h3>课程支持</h3>
  43. <i></i>
  44. <p>提供丰富的企业通用课程资源,助力企业快速搭建企业培训体系</p>
  45. </div>
  46. </li>
  47. <li>
  48. <div class="card-container">
  49. <h3>服务保障</h3>
  50. <i></i>
  51. <p>完善的服务支持体系,7*12小时1对1在线为您解答指导问题</p>
  52. </div>
  53. </li>
  54. <li>
  55. <div class="card-container">
  56. <h3>多种部署方式</h3>
  57. <i></i>
  58. <p>公有云、私有云、本地服务器部署,根据需求随心选择</p>
  59. </div>
  60. </li>
  61. <li>
  62. <div class="card-container">
  63. <h3>安全保障</h3>
  64. <i></i>
  65. <p>采用多层次多安全防护措施,使系统最大限度地不被黑客和有意破坏者攻击</p>
  66. </div>
  67. </li>
  68. </ul>
  69. </div>
  70. <!-- 新闻资讯 -->
  71. <newsComp2 :newsData="topCarousels"></newsComp2>
  72. </div>
  73. </template>
  74. <script>
  75. import freeTrialBtn from "~/components/common/freeTrialBtn";
  76. import onlineInformationBtn from "~/components/common/onlineInformationBtn";
  77. import newsComp2 from "~/components/common/newsComp2";
  78. import chanPinTiYan from "~/components/common/chanPinTiYan";
  79. import imgCardLv3 from "@/components/common/layout/imgDes/imgCardLv3";
  80. import {BannerImgs , classifys} from "~/defaultConfig";
  81. /**
  82. * @ 产品与服务 -> 培训系统
  83. */
  84. export default {
  85. name: "cultivate",
  86. layout: 'templateB',
  87. components: { chanPinTiYan, freeTrialBtn, onlineInformationBtn, newsComp2, imgCardLv3},
  88. async asyncData({$axios, store}) {
  89. const arr = [
  90. $axios.$post(`/home/news/carousel`, {'newsClassifyId': classifys.peixunxitong.classify,'keyword': classifys.peixunxitong.keyword}),
  91. $axios.$post(`/home/banner/list`, {'code': BannerImgs.peixunxitong}),
  92. ];
  93. const [res1, res2] = await Promise.all(arr);
  94. return {
  95. topCarousels: res1.data.data || [],
  96. bannerList: res2.data.data || [],
  97. }
  98. },
  99. head(){
  100. return {
  101. title: '在线考试平台_在线考试软件_试卷软件系统',
  102. meta: [
  103. {
  104. name: 'keywords',
  105. content: '考试平台,试卷系统,试卷软件'
  106. },
  107. {
  108. name:'description',
  109. content:'麦塔考试系统具有良好高并发性和访问安全部署、严格的考试监控防作弊功能、PC移动支持多终端,随时随地考试、丰富的考试管理功能。'
  110. }
  111. ],
  112. }
  113. },
  114. methods: {
  115. clickBanner(url) {
  116. if (url) {
  117. window.open(url)
  118. }
  119. }
  120. },
  121. data() {
  122. return {
  123. productList: [
  124. {
  125. content: {
  126. title: '一键搭建移动端和PC端专属培训平台',
  127. des: '只需一键注册青谷账号,即可拥有自己的专属培训平台。PC端与移动端无缝连接;全面支持安卓、IOS等操作系统,支持APP和微信H5学习模式;为学习者提供真正的随地的、个性化的、开放式的学习服务。',
  128. order: 2,
  129. },
  130. img: {
  131. url: require('~/static/codeImage/code-jingli.png'),
  132. order: 1,
  133. },
  134. mianfei: true,
  135. zixun: true,
  136. shenqing: false,
  137. myType: 'peixun'
  138. },
  139. {
  140. content: {
  141. title: '丰富的文本/音频/视频课程内容上传服务',
  142. des: '全面支持本地文本PDF、Word、Excel、PPT,音频MP3,视频MP4的课程内容上传服务;同时还支持视频服务器链接、第三方链接的课程内容上传服务。',
  143. order: 1,
  144. },
  145. img: {
  146. url: require('~/static/codeImage/code-jingli.png'),
  147. order: 2,
  148. },
  149. mianfei: true,
  150. zixun: true,
  151. shenqing: false,
  152. myType: 'peixun'
  153. },
  154. {
  155. content: {
  156. title: '无延迟、高互动、全终端的线上直播学习',
  157. des: '线上直播课程支持录播视频、PPT直播、桌面共享直播等类型,满足讲师个性化直播场景需求,播放终端全覆盖,学员可通过PC/手机/平板等设备,随时随地观看线上直播学习。',
  158. order: 2,
  159. },
  160. img: {
  161. url: require('~/static/codeImage/code-jingli.png'),
  162. order: 1,
  163. },
  164. mianfei: true,
  165. zixun: true,
  166. shenqing: false,
  167. myType: 'peixun'
  168. },
  169. {
  170. content: {
  171. title: '互动助学工具提升学员活跃度',
  172. des: '自定义导入题库和试卷库,实现考试、作业本、练习及随堂测验,强化学习效果;可创建每日练习、日常作业、随堂考试等玩法,形成督学玩法。提高学员活跃度。',
  173. order: 1,
  174. },
  175. img: {
  176. url: require('~/static/codeImage/code-jingli.png'),
  177. order: 2,
  178. },
  179. mianfei: true,
  180. zixun: true,
  181. shenqing: false,
  182. myType: 'peixun'
  183. }
  184. ],
  185. }
  186. },
  187. }
  188. </script>
  189. <style lang="scss" scoped>
  190. .client-platform-page {
  191. margin-top: 80px;
  192. }
  193. .client-platform-banner {
  194. position: relative;
  195. }
  196. .client-platform-content {
  197. color: #fff;
  198. position: absolute;
  199. top: 0;
  200. bottom: 0;
  201. right: 0;
  202. left: 0;
  203. width: auto;
  204. height: auto;
  205. }
  206. .platform-products-services {
  207. .btn-groups {
  208. margin-top: 48px;
  209. .btn-item {
  210. margin-right: 20px;
  211. }
  212. }
  213. }
  214. </style>