chanPinYunYing.vue 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192
  1. <template>
  2. <div class="client-platform-page client-exam-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. </div>
  9. <!-- 岗位职责 -->
  10. <gangwei-list label="岗位职责" :list="gangwei" :pc-num="3" :h5-num="2" :pc-margin="320" :h5-margin="0"></gangwei-list>
  11. <!-- 能力提升 -->
  12. <div class="client-nengli-box client-container">
  13. <h4>能力提升</h4>
  14. <img :src="img1" alt="能力提升">
  15. </div>
  16. <!-- 部分课程列表 -->
  17. <div class="platform-course-list client-container">
  18. <h4>部分课程列表</h4>
  19. <mtaTable :data="tableData" :config="tableConfig" @shi-kan="shiKan"></mtaTable>
  20. <div class="btn-groups center">
  21. <freeTrialBtn class="btn-item" myType="kaoshi"/>
  22. <onlineInformationBtn />
  23. </div>
  24. </div>
  25. </div>
  26. </template>
  27. <script>
  28. import mtaTable from "~/components/common/mtaTable";
  29. import videoDialog from "~/components/common/videoDialog";
  30. import freeTrialBtn from "~/components/common/freeTrialBtn";
  31. import onlineInformationBtn from "~/components/common/onlineInformationBtn";
  32. import gangweiList from "@/components/common/layout/desComp/gangweiList";
  33. import {BannerImgs, chanpinyunying} from "~/defaultConfig";
  34. /**
  35. * @ 产品与服务 -> 课程资源 -> 产品运营
  36. */
  37. export default {
  38. name: "professionalQuality",
  39. layout: 'templateB',
  40. head() {
  41. return {
  42. title: '在线考试平台_在线考试软件_试卷软件系统',
  43. meta: [
  44. {
  45. name: 'keywords',
  46. content: '考试平台,试卷系统,试卷软件'
  47. },
  48. {
  49. name: 'description',
  50. content: '麦塔考试系统具有良好高并发性和访问安全部署、严格的考试监控防作弊功能、PC移动支持多终端,随时随地考试、丰富的考试管理功能。'
  51. }
  52. ],
  53. }
  54. },
  55. async asyncData({$axios}) {
  56. const arr = [
  57. $axios.$post(`/home/banner/list`, {'code': BannerImgs.chanpinyunying}),
  58. ]
  59. const [res1] = await Promise.all(arr);
  60. return {
  61. bannerList: res1.data.data || [],
  62. }
  63. },
  64. components: {
  65. mtaTable, videoDialog,
  66. freeTrialBtn, onlineInformationBtn, gangweiList
  67. },
  68. data() {
  69. return {
  70. tableConfig: [
  71. {
  72. label: '课程名称',
  73. key: 'name'
  74. },
  75. {
  76. label: '使用行业',
  77. key: 'hangye'
  78. },
  79. {
  80. label: '使用人群',
  81. key: 'renqun'
  82. }
  83. ],
  84. tableData: [
  85. {
  86. name: '助你获得客户资源(运营实战课)',
  87. shikanUrl: 'https://1111',
  88. hangye: '全行业',
  89. renqun: '客户专员'
  90. },
  91. {
  92. name: '不再为流量发愁',
  93. shikanUrl: '',
  94. hangye: '全行业',
  95. renqun: '客户专员'
  96. },
  97. {
  98. name: '5G开启新互联网时代',
  99. shikanUrl: '',
  100. hangye: '全行业',
  101. renqun: '客户专员'
  102. },
  103. {
  104. name: '创新思维课',
  105. shikanUrl: '',
  106. hangye: '全行业',
  107. renqun: '客户专员'
  108. },
  109. ],
  110. curVideo: '',
  111. visible: false,
  112. img1: require("~/static/productImage/p45.png")
  113. }
  114. },
  115. computed: {
  116. gangwei() {
  117. return chanpinyunying
  118. }
  119. },
  120. methods: {
  121. shiKan({url}) {
  122. this.visible = true;
  123. this.curVideo = url;
  124. }
  125. }
  126. }
  127. </script>
  128. <style lang="scss" scoped>
  129. .client-nengli-box {
  130. margin-bottom: 120px;
  131. h4 {
  132. font-size: 30px;
  133. color: #333;
  134. font-weight: 800;
  135. text-align: center;
  136. margin-bottom: 50px;
  137. }
  138. img {
  139. height: 100%;
  140. width: 330px;
  141. text-align: center;
  142. margin: 0 auto;
  143. display: block;
  144. }
  145. }
  146. .platform-course-list {
  147. h4 {
  148. font-size: 30px;
  149. font-weight: 800;
  150. color: #333;
  151. text-align: center;
  152. margin-bottom: 68px;
  153. }
  154. }
  155. @media (max-width: 768px) {
  156. .platform-course-list {
  157. h4 {
  158. font-size: 18px;
  159. font-weight: 800;
  160. color: #333;
  161. text-align: center;
  162. margin-bottom: 10%;
  163. margin-top: 15%;
  164. }
  165. }
  166. .client-nengli-box {
  167. margin-bottom: 5%;
  168. h4 {
  169. font-size: 18px;
  170. margin-bottom: 30px;
  171. }
  172. img {
  173. height: 200px;
  174. width: 100%;
  175. }
  176. }
  177. }
  178. </style>