keFuFuWu.vue 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203
  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. <gangweiList label="岗位职责" :list="gangwei" :pc-num="3" :h5-num="2"></gangweiList>
  11. <!-- 能力提升 -->
  12. <div class="client-nengli-box client-container">
  13. <h4>能力提升</h4>
  14. <img src="#" 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">
  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, kefufuwu} 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.kefufuwu}),
  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: '如何增强对客户的影响力',
  99. shikanUrl: '',
  100. hangye: '全行业',
  101. renqun: '客户专员'
  102. },
  103. {
  104. name: '客户服务价值的四个层次',
  105. shikanUrl: '',
  106. hangye: '全行业',
  107. renqun: '客户专员'
  108. },
  109. {
  110. name: '提升客户服务的三项技能',
  111. shikanUrl: '',
  112. hangye: '全行业',
  113. renqun: '客户专员'
  114. },
  115. {
  116. name: '以客户为中心',
  117. shikanUrl: '',
  118. hangye: '全行业',
  119. renqun: '客户专员'
  120. },
  121. ],
  122. curVideo: '',
  123. visible: false,
  124. }
  125. },
  126. computed: {
  127. gangwei() {
  128. return kefufuwu
  129. }
  130. },
  131. methods: {
  132. shiKan({url}) {
  133. this.visible = true;
  134. this.curVideo = url;
  135. }
  136. }
  137. }
  138. </script>
  139. <style lang="scss" scoped>
  140. .client-banner-box {
  141. width: 100%;
  142. height: 736px;
  143. .client-platform-banner {
  144. height: 100%;
  145. width: 100%;
  146. }
  147. }
  148. .client-nengli-box {
  149. margin-bottom: 120px;
  150. h4 {
  151. font-size: 30px;
  152. color: #333;
  153. font-weight: 800;
  154. text-align: center;
  155. margin-bottom: 50px;
  156. }
  157. img {
  158. height: 100%;
  159. width: 330px;
  160. text-align: center;
  161. margin: 0 auto;
  162. display: block;
  163. }
  164. }
  165. .platform-course-list {
  166. h4 {
  167. font-size: 30px;
  168. font-weight: 800;
  169. color: #333;
  170. text-align: center;
  171. margin-bottom: 68px;
  172. }
  173. }
  174. @media (max-width: 768px) {
  175. .platform-course-list {
  176. h4 {
  177. font-size: 18px;
  178. font-weight: 800;
  179. color: #333;
  180. text-align: center;
  181. margin-bottom: 10%;
  182. margin-top: 15%;
  183. }
  184. }
  185. .client-nengli-box {
  186. margin-bottom: 5%;
  187. }
  188. }
  189. </style>