education.vue 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454
  1. <template>
  2. <div class="client-exam-page client-platform-page">
  3. <!-- 广告图位置 -->
  4. <div class="client-banner-box">
  5. <div
  6. :style="{backgroundImage: `url(${bannerList[0].pic || require(`~/static/images/client/train/train-banner-background.png`)})`}"
  7. class="client-platform-banner">
  8. <div class="client-container mta-hidden-xs">
  9. <div class="banner-btn-groups">
  10. <onlineInformationBtn class="online-information-btn btn-item" />
  11. </div>
  12. </div>
  13. </div>
  14. </div>
  15. <!-- 教育机构培训现状 -->
  16. <div class="client-xianzhuang-box">
  17. <h4>教育机构培训现状</h4>
  18. <p>
  19. 教育机构的学员来自社会各界,学习的内容也各不相同,因此要像普通学校一般按照班级进行统一管理难如登天。
  20. 青谷已具备完善的培训学习与考试功能,支持电子课件、在线直播、在线考试、智能阅卷、统计分析等高效、全面的服务,是教育机构办学不可或缺的利器。
  21. </p>
  22. </div>
  23. <!-- 教育机构培训痛点 -->
  24. <div class="client-tongdian-box client-container">
  25. <ul>
  26. <li>
  27. <div>
  28. <i></i>
  29. <p>学员分散,来源各异,组织通过的学习与考试非常困哪</p>
  30. </div>
  31. </li>
  32. <li>
  33. <div>
  34. <i></i>
  35. <p>学员学历层次不同,不能按照常规的年纪、班级等方式划分</p>
  36. </div>
  37. </li>
  38. <li>
  39. <div>
  40. <i></i>
  41. <p>老师与学员之间缺乏有效的沟通,教学成果较难把控</p>
  42. </div>
  43. </li>
  44. </ul>
  45. </div>
  46. <!-- 青谷解决方案 -->
  47. <div class="platform-products-services client-container">
  48. <h4 class="client-title">青谷解决方案</h4>
  49. <imgCardLv2 :option="item" v-for="(item,index) in productList" :key="index">
  50. <div class="btn-groups">
  51. <onlineInformationBtn my-type="2" class="online-information-btn btn-item" />
  52. </div>
  53. </imgCardLv2>
  54. </div>
  55. <!-- 教育培训类型课程案例 -->
  56. <div class="client-anli-box client-container">
  57. <h4>教育培训类课程案例</h4>
  58. <p>青谷软件可为教育培训行业定制电子化课程</p>
  59. <ul>
  60. <li>
  61. <video-card :card-data="{title: 'FLASH动画课程', url: ''}" @card-click="showVideo"></video-card>
  62. </li>
  63. <li>
  64. <video-card :card-data="{title: '视频课程', url: ''}" @card-click="showVideo"></video-card>
  65. </li>
  66. <li>
  67. <video-card :card-data="{title: '名师讲堂', url: ''}" @card-click="showVideo"></video-card>
  68. </li>
  69. </ul>
  70. </div>
  71. <!-- 立即咨询 -->
  72. <desWithCode source="education"></desWithCode>
  73. <videoDialog :source="curVideo" :visible.sync="visible"></videoDialog>
  74. </div>
  75. </template>
  76. <script>
  77. import chanPinTiYan from "~/components/common/chanPinTiYan";
  78. import freeTrialBtn from "~/components/common/freeTrialBtn";
  79. import onlineInformationBtn from "~/components/common/onlineInformationBtn";
  80. import newsComp2 from "~/components/common/newsComp2";
  81. import videoDialog from "~/components/common/videoDialog";
  82. import videoCard from "~/components/common/videoCard";
  83. import {BannerImgs} from "~/defaultConfig";
  84. import desWithCode from "~/components/common/layout/desComp/desWithCode";
  85. import imgCardLv2 from "~/components/common/layout/imgDes/imgCardLv2";
  86. /**
  87. * @ 解决方案 -> 教育机构
  88. */
  89. export default {
  90. name: "education",
  91. layout: 'templateB',
  92. components: { chanPinTiYan, freeTrialBtn, onlineInformationBtn, newsComp2, videoDialog, videoCard, desWithCode, imgCardLv2},
  93. async asyncData({$axios}) {
  94. const arr = [
  95. $axios.$post(`/home/banner/list`, {'code': BannerImgs.jiaoyujigou}),
  96. ];
  97. const [res2] = await Promise.all(arr);
  98. return {
  99. bannerList: res2.data.data || [],
  100. }
  101. },
  102. data() {
  103. return {
  104. curVideo: '',
  105. visible: false,
  106. productList: [
  107. {
  108. content: {
  109. title: '强大的人员管理和培训功能',
  110. list: [
  111. {
  112. value: '支持手动、批量导入人员及部门多层级管理功能,解决机构人员多且分散的问题',
  113. },
  114. {
  115. value: '支持线上课程、直播课、线下培训按照课程科目设定进行课程分类划分',
  116. },
  117. {
  118. value: '学习时段灵活,不强制要求学员在某一特定时刻参加培训,并支持无限学习,实现从“了解”到“理解”的飞跃',
  119. },
  120. ],
  121. order: 2,
  122. num: '01',
  123. },
  124. img: {
  125. url: require('~/static/codeImage/code-jingli.png'),
  126. order: 1,
  127. },
  128. mianfei: true,
  129. zixun: true,
  130. shenqing: false,
  131. myType: 'kaoshi'
  132. },
  133. {
  134. content: {
  135. title: '强大的AI防作弊,保障考试公平公正',
  136. list: [
  137. {
  138. value: '人脸识别、摄像头监考、有效防止替考代考,保障考试公平公正',
  139. },
  140. {
  141. value: '支持子管理员协助多屏监控在线监考,考生的面部表情、一举一动在后台实时呈现,最大程度模拟人工监考场景',
  142. },
  143. {
  144. value: '随机组卷、试题乱序、选择题选项乱序、超时强制交卷、防止切屏限制,有效的防止考生相互抄卷的行为',
  145. },
  146. ],
  147. order: 1,
  148. num: '02',
  149. },
  150. img: {
  151. url: require('~/static/codeImage/code-jingli.png'),
  152. order: 2,
  153. },
  154. mianfei: true,
  155. zixun: true,
  156. shenqing: false,
  157. myType: 'kaoshi'
  158. },
  159. {
  160. content: {
  161. title: '多端口个性化设置随心选择',
  162. list: [
  163. {
  164. value: '支持个性化定制登录背景、品牌、logo等,一键搭建属于您的个性化在线考试系统',
  165. },
  166. {
  167. value: '与三方平台无缝集成,支持OA、HR、ERP、教务、微信、钉钉等应用的对接',
  168. },
  169. {
  170. value: 'PC、APP、H5统一管理,数据互动,充分利用水平化时间,塑造学员高频率使用习惯',
  171. },
  172. ],
  173. order: 2,
  174. num: '03',
  175. },
  176. img: {
  177. url: require('~/static/codeImage/code-jingli.png'),
  178. order: 1,
  179. },
  180. mianfei: true,
  181. zixun: true,
  182. shenqing: false,
  183. myType: 'kaoshi'
  184. },
  185. {
  186. content: {
  187. title: '智能阅卷,多维度、可视化学情分析',
  188. list: [
  189. {
  190. value: '智能阅卷系统,减轻管理员工作压力,考后直接出成绩及排行榜等信息',
  191. },
  192. {
  193. value: '从用户、学习情况、考试、成绩、试题、排名、机构等层面多维度分析培训结果,掌握学员学习情况',
  194. },
  195. ],
  196. order: 1,
  197. num: '04',
  198. },
  199. img: {
  200. url: require('~/static/codeImage/code-jingli.png'),
  201. order: 2,
  202. },
  203. mianfei: true,
  204. zixun: true,
  205. shenqing: false,
  206. myType: 'kaoshi'
  207. }
  208. ],
  209. }
  210. },
  211. methods: {
  212. showVideo({url}) {
  213. this.curVideo = url;
  214. this.visible = true;
  215. }
  216. }
  217. }
  218. </script>
  219. <style lang="scss" scoped>
  220. .client-xianzhuang-box {
  221. background-image: url("~static/gangweiIcon/z90.png");
  222. width: 100%;
  223. height: 560px;
  224. margin-top: 150px;
  225. background-position: center;
  226. background-repeat: no-repeat;
  227. background-size: contain;
  228. h4 {
  229. font-size: 30px;
  230. color: #333;
  231. margin-top: 120px;
  232. margin-bottom: 40px;
  233. font-weight: 800;
  234. text-align: center;
  235. }
  236. p {
  237. font-size: 18px;
  238. font-weight: 500;
  239. text-align: center;
  240. line-height: 36px;
  241. width: 1000px;
  242. margin: 0 auto;
  243. }
  244. }
  245. .client-tongdian-box {
  246. h4 {
  247. font-size: 30px;
  248. color: #333;
  249. margin-top: 120px;
  250. margin-bottom: 40px;
  251. font-weight: 800;
  252. text-align: center;
  253. }
  254. ul {
  255. display: flex;
  256. justify-content: center;
  257. li {
  258. div {
  259. margin: 0 51px 0 0;
  260. width: 380px;
  261. height: 280px;
  262. background-size: contain;
  263. background-repeat: no-repeat;
  264. background-position: center;
  265. text-align: center;
  266. i {
  267. width: 110px;
  268. height: 88px;
  269. margin-top: 50px;
  270. display: inline-block;
  271. background-size: contain;
  272. background-repeat: no-repeat;
  273. background-position: center;
  274. }
  275. p {
  276. text-align: center;
  277. color: #fffefe;
  278. font-size: 18px;
  279. font-weight: 800;
  280. line-height: 30px;
  281. width: 220px;
  282. margin: 20px auto 0;
  283. }
  284. }
  285. &:nth-child(1) {
  286. div {
  287. background-image: url("~static/gangweiIcon/z91.png");
  288. i {
  289. background-image: url('~static/gangweiIcon/z97.png');
  290. }
  291. }
  292. }
  293. &:nth-child(2) {
  294. div {
  295. background-image: url("~static/gangweiIcon/z92.png");
  296. i {
  297. background-image: url('~static/gangweiIcon/z103.png');
  298. }
  299. }
  300. }
  301. &:nth-child(3) {
  302. div {
  303. background-image: url("~static/gangweiIcon/z93.png");
  304. i {
  305. background-image: url('~static/gangweiIcon/z104.png');
  306. }
  307. }
  308. }
  309. }
  310. }
  311. }
  312. .platform-products-services {
  313. h4 {
  314. font-size: 30px;
  315. font-weight: 800;
  316. color: #333;
  317. margin-top: 140px;
  318. margin-bottom: 120px;
  319. }
  320. .btn-groups {
  321. margin-top: 50px;
  322. }
  323. }
  324. @media (max-width: 768px) {
  325. .client-xianzhuang-box {
  326. background-image: none;
  327. width: 100%;
  328. height: 30%;
  329. background-position: center;
  330. background-repeat: no-repeat;
  331. background-size: contain;
  332. h4 {
  333. font-size: 18px;
  334. color: #333;
  335. margin-top: 10%;
  336. margin-bottom: 40px;
  337. font-weight: 800;
  338. text-align: center;
  339. }
  340. p {
  341. font-size: 14px;
  342. font-weight: 500;
  343. text-align: center;
  344. line-height: 1.5;
  345. width: 100%;
  346. margin: 0 auto;
  347. }
  348. }
  349. .client-tongdian-box {
  350. h4 {
  351. font-size: 18px;
  352. color: #333;
  353. margin-top: 10%;
  354. margin-bottom: 3%;
  355. font-weight: 800;
  356. text-align: center;
  357. }
  358. ul {
  359. display: flex;
  360. flex-direction: column;
  361. li {
  362. div {
  363. margin: 0 20px 0 0;
  364. width: 100%;
  365. height: auto;
  366. background-size: contain;
  367. background-repeat: no-repeat;
  368. background-position: center;
  369. text-align: center;
  370. display: flex;
  371. justify-content: flex-start;
  372. i {
  373. width: 90px;
  374. height: 90px;
  375. margin-top: 3%;
  376. background-color: #ccc;
  377. display: inline-block;
  378. background-size: contain;
  379. background-repeat: no-repeat;
  380. background-position: center;
  381. }
  382. p {
  383. text-align: left;
  384. color: #333;
  385. font-size: 14px;
  386. font-weight: 500;
  387. line-height: 1.5;
  388. width: 80%;
  389. margin: 20px 0 0 20px;
  390. }
  391. }
  392. &:nth-child(1) {
  393. div {
  394. background-image: none;
  395. i {
  396. background-image: url('~static/gangweiIcon/z97.png');
  397. }
  398. }
  399. }
  400. &:nth-child(2) {
  401. div {
  402. background-image: none;
  403. i {
  404. background-image: url('~static/gangweiIcon/z103.png');
  405. }
  406. }
  407. }
  408. &:nth-child(3) {
  409. div {
  410. background-image: none;
  411. i {
  412. background-image: url('~static/gangweiIcon/z104.png');
  413. }
  414. }
  415. }
  416. }
  417. }
  418. }
  419. }
  420. </style>