courseResource.vue 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218
  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"></div>
  8. <h3>青谷,专业的企业培训课程资源解决方案供应商</h3>
  9. <p>基于岗位胜任力模型,提供通用岗位培训方案,满足企业内训需求</p>
  10. </div>
  11. <!-- 企业通用岗位培训方案 -->
  12. <div class="platform-animation">
  13. <h4 class="client-title">企业通用岗位培训方案</h4>
  14. <ul>
  15. <li @click="goChildPage('zhiYeSuYang')">
  16. <i></i>
  17. <span>职业素养</span>
  18. </li>
  19. <li @click="goChildPage('lingDaoNengLi')">
  20. <i></i>
  21. <span>领导能力</span>
  22. </li>
  23. <li @click="goChildPage('renLiZiYuan')">
  24. <i></i>
  25. <span>人力资源</span>
  26. </li>
  27. <li @click="goChildPage('shiCHangYingXiao')">
  28. <i></i>
  29. <span>市场营销</span>
  30. </li>
  31. <li @click="goChildPage('xingZhengGuanLi')">
  32. <i></i>
  33. <span>行政管理</span>
  34. </li>
  35. <li @click="goChildPage('caiWuGuanLi')">
  36. <i></i>
  37. <span>财务管理</span>
  38. </li>
  39. <li @click="goChildPage('keFuFuWu')">
  40. <i></i>
  41. <span>客服服务</span>
  42. </li>
  43. <li @click="goChildPage('chanPinYunYing')">
  44. <i></i>
  45. <span>产品运营</span>
  46. </li>
  47. <li @click="goChildPage('shengChanCaiGou')">
  48. <i></i>
  49. <span>生产采购</span>
  50. </li>
  51. </ul>
  52. <div class="btns-group">
  53. <a class="client-default-Btn">
  54. <applyBtn @active-pc="onApplyBtnActive" @active-h5="onApplyBtnActiveH5"/>
  55. </a>
  56. <onlineInformationBtn class="client-default-Btn" />
  57. </div>
  58. </div>
  59. <!-- 为企业培训打造学习矩阵 -->
  60. <div class="platform-animation">
  61. <h4>为企业培训打造学习矩阵</h4>
  62. <ul>
  63. <li>
  64. <i></i>
  65. <span>课程总数近 <i>5000门</i></span>
  66. </li>
  67. <li>
  68. <i></i>
  69. <span>涵盖 <i>2000个</i>知识要点</span>
  70. </li>
  71. <li>
  72. <i></i>
  73. <span>提供 <i>9大</i>通用岗位培训方案</span>
  74. </li>
  75. <li>
  76. <i></i>
  77. <span>课程资源 <i>每月</i>持续更新</span>
  78. </li>
  79. </ul>
  80. <div class="btns-group">
  81. <a class="client-default-Btn">
  82. <applyBtn @active-pc="onApplyBtnActive" @active-h5="onApplyBtnActiveH5"/>
  83. </a>
  84. <onlineInformationBtn class="client-default-Btn" />
  85. </div>
  86. </div>
  87. <!-- 课程内容形式多样 -->
  88. <div class="platform-animation">
  89. <h4>为企业培训打造学习矩阵</h4>
  90. <ul>
  91. <li>
  92. <video-card :card-data="{title: 'FLASH动画课程',
  93. des:'主要以图文动画的形式表现教学者的作用和教与学之间的关系,从而改变学习的本质',
  94. url: ''}" @card-click="showVideo"></video-card>
  95. </li>
  96. <li>
  97. <video-card :card-data="{title: '视频课程',
  98. des:'把教师视频与PowerPoint课件一并摄制下来,生成为视频课件',
  99. url: ''}" @card-click="showVideo"></video-card>
  100. </li>
  101. <li>
  102. <video-card :card-data="{title: '名师讲堂',
  103. des:'各行各业讲师汇聚一堂,为不同专属领域打造明星级课堂',
  104. url: ''}" @card-click="showVideo"></video-card>
  105. </li>
  106. </ul>
  107. </div>
  108. <!-- 新闻咨询 -->
  109. <newsComp2 :newsData="topCarousels"></newsComp2>
  110. <videoDialog :source="curVideo" :visible.sync="visible"></videoDialog>
  111. <!-- 申请方案 -->
  112. <applicationDialog :visible.sync="telDl"></applicationDialog>
  113. </div>
  114. </template>
  115. <script>
  116. import applicationDialog from "~/components/common/applicationDialog";
  117. import applyBtn from "~/components/common/applyBtn";
  118. import onlineInformationBtn from "~/components/common/onlineInformationBtn";
  119. import newsComp2 from "~/components/common/newsComp2";
  120. import chanPinTiYan from "~/components/common/chanPinTiYan";
  121. import videoDialog from "~/components/common/videoDialog";
  122. import videoCard from "~/components/common/videoCard";
  123. import {BannerImgs, classifys} from "~/defaultConfig";
  124. /**
  125. * @ 产品与服务 -> 课程资源
  126. */
  127. export default {
  128. name: "courseResource",
  129. layout: 'templateB',
  130. head(){
  131. return {
  132. title: '在线考试平台_在线考试软件_试卷软件系统',
  133. meta: [
  134. {
  135. name: 'keywords',
  136. content: '考试平台,试卷系统,试卷软件'
  137. },
  138. {
  139. name:'description',
  140. content:'麦塔考试系统具有良好高并发性和访问安全部署、严格的考试监控防作弊功能、PC移动支持多终端,随时随地考试、丰富的考试管理功能。'
  141. }
  142. ],
  143. }
  144. },
  145. components: {applyBtn, onlineInformationBtn, newsComp2, chanPinTiYan, videoDialog, videoCard, applicationDialog},
  146. async asyncData({$axios, store}) {
  147. const arr = [
  148. $axios.$post(`/home/news/carousel`, {'newsClassifyId': classifys.kechengziyuan.classify, 'keyword': classifys.kechengziyuan.keyword}),
  149. $axios.$post(`/home/banner/list`, {'code': BannerImgs.tongyongkecheng}),
  150. ]
  151. const [res1, res2] = await Promise.all(arr);
  152. return {
  153. topCarousels: res1.data.data || [],
  154. bannerList: res2.data.data || [],
  155. }
  156. },
  157. data() {
  158. return {
  159. curVideo: '',
  160. visible: false,
  161. telDl: false,
  162. }
  163. },
  164. methods: {
  165. goChildPage(key) {
  166. this.$router.push({ path: `/product/${key}` })
  167. },
  168. showVideo({url}) {
  169. this.curVideo = url;
  170. this.visible = true;
  171. },
  172. onApplyBtnActive() {
  173. this.telDl = true;
  174. },
  175. onApplyBtnActiveH5() {
  176. this.$router.push({name: 'CourseDevelopPhone', query: {redirectUrl: 'shouye',}});
  177. },
  178. }
  179. }
  180. </script>
  181. <style lang="scss" scoped>
  182. .client-exam-page {
  183. margin-top: 70px;
  184. }
  185. .client-banner-box {
  186. height: 200px;
  187. background: green;
  188. text-align: center;
  189. color: #fff;
  190. }
  191. .btns-group {
  192. display: flex;
  193. text-align: center;
  194. .client-default-Btn {
  195. width: 120px;
  196. margin-right: 20px;
  197. }
  198. }
  199. .platform-animation {
  200. ul {
  201. font-size: 16px;
  202. }
  203. }
  204. </style>