chanPinYunYing.vue 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207
  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. <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, chanpinyunying} 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.chanpinyunying}),
  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/c708e29d83f842ec9cd6a11ffb831559/d6fb5cc7893f4405b937fbe99c5080f4-df942531e5deaa288ddd098af1d2ff28-fd.mp4',
  93. hangye: '全行业',
  94. renqun: '客户专员'
  95. },
  96. {
  97. name: '不再为流量发愁',
  98. shikanUrl: '',
  99. hangye: '全行业',
  100. renqun: '客户专员'
  101. },
  102. {
  103. name: '5G开启新互联网时代',
  104. shikanUrl: '',
  105. hangye: '全行业',
  106. renqun: '客户专员'
  107. },
  108. {
  109. name: '创新思维课',
  110. shikanUrl: '',
  111. hangye: '全行业',
  112. renqun: '客户专员'
  113. },
  114. ],
  115. curVideo: '',
  116. visible: false,
  117. img1: require("~/static/productImage/p45.png"),
  118. telDl: false,
  119. }
  120. },
  121. computed: {
  122. gangwei() {
  123. return chanpinyunying
  124. }
  125. },
  126. methods: {
  127. shiKan({url}) {
  128. this.visible = true;
  129. this.curVideo = url;
  130. },
  131. onApplyBtnActive() {
  132. this.telDl = true;
  133. },
  134. onApplyBtnActiveH5() {
  135. this.$router.push({name: 'CourseDevelopPhone', query: {redirectUrl: '/product/chanPinYunYing',}});
  136. },
  137. }
  138. }
  139. </script>
  140. <style lang="scss" scoped>
  141. .client-nengli-box {
  142. margin-bottom: 120px;
  143. h4 {
  144. font-size: 30px;
  145. color: #333;
  146. font-weight: 800;
  147. text-align: center;
  148. margin-bottom: 50px;
  149. }
  150. img {
  151. height: 100%;
  152. width: 330px;
  153. text-align: center;
  154. margin: 0 auto;
  155. display: block;
  156. }
  157. }
  158. .platform-course-list {
  159. h4 {
  160. font-size: 30px;
  161. font-weight: 800;
  162. color: #333;
  163. text-align: center;
  164. margin-bottom: 68px;
  165. }
  166. }
  167. @media (max-width: 768px) {
  168. .platform-course-list {
  169. h4 {
  170. font-size: 18px;
  171. font-weight: 800;
  172. color: #333;
  173. text-align: center;
  174. margin-bottom: 10%;
  175. margin-top: 15%;
  176. }
  177. }
  178. .client-nengli-box {
  179. margin-bottom: 5%;
  180. h4 {
  181. font-size: 18px;
  182. margin-bottom: 30px;
  183. }
  184. img {
  185. height: 200px;
  186. width: 100%;
  187. }
  188. }
  189. }
  190. </style>