keFuFuWu.vue 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220
  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="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. <applyBtn class="btn-item" @active-pc="onApplyBtnActive" @active-h5="onApplyBtnActiveH5"/>
  22. <onlineInformationBtn />
  23. </div>
  24. </div>
  25. <!-- 申请方案 -->
  26. <applicationDialog :visible.sync="telDl"></applicationDialog>
  27. </div>
  28. </template>
  29. <script>
  30. import mtaTable from "~/components/common/mtaTable";
  31. import videoDialog from "~/components/common/videoDialog";
  32. import freeTrialBtn from "~/components/common/freeTrialBtn";
  33. import onlineInformationBtn from "~/components/common/onlineInformationBtn";
  34. import gangweiList from "@/components/common/layout/desComp/gangweiList";
  35. import {BannerImgs, kefufuwu} from "~/defaultConfig";
  36. import applicationDialog from "~/components/common/applicationDialog";
  37. import applyBtn from "~/components/common/applyBtn";
  38. /**
  39. * @ 产品与服务 -> 课程资源 -> 课程服务
  40. */
  41. export default {
  42. name: "professionalQuality",
  43. layout: 'templateB',
  44. head() {
  45. return {
  46. title: '在线考试平台_在线考试软件_试卷软件系统',
  47. meta: [
  48. {
  49. name: 'keywords',
  50. content: '考试平台,试卷系统,试卷软件'
  51. },
  52. {
  53. name: 'description',
  54. content: '麦塔考试系统具有良好高并发性和访问安全部署、严格的考试监控防作弊功能、PC移动支持多终端,随时随地考试、丰富的考试管理功能。'
  55. }
  56. ],
  57. }
  58. },
  59. async asyncData({$axios}) {
  60. const arr = [
  61. $axios.$post(`/home/banner/list`, {'code': BannerImgs.kefufuwu}),
  62. ]
  63. const [res1] = await Promise.all(arr);
  64. return {
  65. bannerList: res1.data.data || [],
  66. }
  67. },
  68. components: {
  69. mtaTable, videoDialog,applicationDialog,applyBtn,
  70. freeTrialBtn, onlineInformationBtn, gangweiList
  71. },
  72. data() {
  73. return {
  74. tableConfig: [
  75. {
  76. label: '课程名称',
  77. key: 'name'
  78. },
  79. {
  80. label: '使用行业',
  81. key: 'hangye'
  82. },
  83. {
  84. label: '使用人群',
  85. key: 'renqun'
  86. }
  87. ],
  88. tableData: [
  89. {
  90. name: '沟通中如何聆听',
  91. shikanUrl: 'https://spdb.mtavip.com/379983a3c7d949ab84397529da2c5a37/096977a7f73543db9dc420c30d4071c8-b586d62ce2b4e5df752dbb3248cd2333-fd.mp4',
  92. hangye: '全行业',
  93. renqun: '客户专员'
  94. },
  95. {
  96. name: '处理顾客抱怨的技巧',
  97. shikanUrl: '',
  98. hangye: '全行业',
  99. renqun: '客户专员'
  100. },
  101. {
  102. name: '如何增强对客户的影响力',
  103. shikanUrl: '',
  104. hangye: '全行业',
  105. renqun: '客户专员'
  106. },
  107. {
  108. name: '客户服务价值的四个层次',
  109. shikanUrl: '',
  110. hangye: '全行业',
  111. renqun: '客户专员'
  112. },
  113. {
  114. name: '提升客户服务的三项技能',
  115. shikanUrl: '',
  116. hangye: '全行业',
  117. renqun: '客户专员'
  118. },
  119. {
  120. name: '以客户为中心',
  121. shikanUrl: '',
  122. hangye: '全行业',
  123. renqun: '客户专员'
  124. },
  125. ],
  126. curVideo: '',
  127. visible: false,
  128. img1: require("~/static/productImage/p46.png"),
  129. telDl: false,
  130. }
  131. },
  132. computed: {
  133. gangwei() {
  134. return kefufuwu
  135. }
  136. },
  137. methods: {
  138. shiKan({url}) {
  139. this.visible = true;
  140. this.curVideo = url;
  141. },
  142. onApplyBtnActive() {
  143. this.telDl = true;
  144. },
  145. onApplyBtnActiveH5() {
  146. this.$router.push({name: 'CourseDevelopPhone', query: {redirectUrl: '/product/keFuFuWu',}});
  147. },
  148. }
  149. }
  150. </script>
  151. <style lang="scss" scoped>
  152. .client-nengli-box {
  153. margin-bottom: 120px;
  154. h4 {
  155. font-size: 30px;
  156. color: #333;
  157. font-weight: 800;
  158. text-align: center;
  159. margin-bottom: 50px;
  160. }
  161. img {
  162. height: 100%;
  163. width: 330px;
  164. text-align: center;
  165. margin: 0 auto;
  166. display: block;
  167. }
  168. }
  169. .platform-course-list {
  170. h4 {
  171. font-size: 30px;
  172. font-weight: 800;
  173. color: #333;
  174. text-align: center;
  175. margin-bottom: 68px;
  176. }
  177. }
  178. @media (max-width: 768px) {
  179. .platform-course-list {
  180. h4 {
  181. font-size: 18px;
  182. font-weight: 800;
  183. color: #333;
  184. text-align: center;
  185. margin-bottom: 10%;
  186. margin-top: 15%;
  187. }
  188. }
  189. .client-nengli-box {
  190. margin-bottom: 5%;
  191. h4 {
  192. font-size: 18px;
  193. margin-bottom: 30px;
  194. }
  195. img {
  196. height: 200px;
  197. width: 100%;
  198. }
  199. }
  200. }
  201. </style>