keFuFuWu.vue 5.3 KB

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