shiChangYingXiao.vue 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360
  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. <div class="client-shichang-xiaoshou client-container">
  11. <div class="nav-btns">
  12. <span @click="changeStatus('shichang')" :class="{active: curActive}">市场部</span>
  13. <span @click="changeStatus('xiaoshou')" :class="{active: !curActive}">销售部</span>
  14. </div>
  15. <p v-if="curActive">
  16. 市场部是销售决策部门信息的提供者和参谋,是把产品、服务信息传达给目标客户的企划者和执行者。
  17. 在变幻莫测的市场上,市场部为企业辩路、寻路、带路,对企业的发展起着至关重要的作用。
  18. </p>
  19. <p v-else>
  20. 销售部是以产品销售为主要工作的部门。负责总体的营销活动,决定公司的营销策略和措施,
  21. 并对营销工作进行评估和监控,包括公共关系、销售、客户服务等。
  22. </p>
  23. </div>
  24. <!-- 岗位职责 -->
  25. <div class="client-gangwei-box">
  26. <gangwei-list v-if="curActive" label="岗位职责" :list="shichang" :pc-num="3" :h5-num="2" :pc-margin="320" :h5-margin="0"></gangwei-list>
  27. <gangwei-list v-else label="岗位职责" :list="xiaoshou" :pc-num="3" :h5-num="2" :pc-margin="320" :h5-margin="0"></gangwei-list>
  28. </div>
  29. <!-- 部分课程列表 -->
  30. <div class="platform-course-list client-container">
  31. <h4>部分课程列表</h4>
  32. <mtaTable v-if="curActive" :data="tableData" :config="tableConfig" @shi-kan="shiKan"></mtaTable>
  33. <mtaTable v-else :data="tableData2" :config="tableConfig" @shi-kan="shiKan"></mtaTable>
  34. <div class="btn-groups center">
  35. <freeTrialBtn class="btn-item" myType="kecheng"/>
  36. <onlineInformationBtn />
  37. </div>
  38. </div>
  39. <videoDialog :source="curVideo" :visible.sync="visible"></videoDialog>
  40. </div>
  41. </template>
  42. <script>
  43. import mtaTable from "~/components/common/mtaTable";
  44. import videoDialog from "~/components/common/videoDialog";
  45. import freeTrialBtn from "~/components/common/freeTrialBtn";
  46. import onlineInformationBtn from "~/components/common/onlineInformationBtn";
  47. import {BannerImgs, shichangyingxiao_shichang, shichangyingxiao_xiaoshou} from "~/defaultConfig";
  48. import gangweiList from "~/components/common/layout/desComp/gangweiList";
  49. /**
  50. * @ 产品与服务 -> 课程资源 -> 市场营销
  51. */
  52. export default {
  53. name: "professionalQuality",
  54. layout: 'templateB',
  55. async asyncData({$axios}) {
  56. const arr = [
  57. $axios.$post(`/home/banner/list`, {'code': BannerImgs.shichangyingxiao}),
  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. head(){
  68. return {
  69. title: '在线考试平台_在线考试软件_试卷软件系统',
  70. meta: [
  71. {
  72. name: 'keywords',
  73. content: '考试平台,试卷系统,试卷软件'
  74. },
  75. {
  76. name:'description',
  77. content:'麦塔考试系统具有良好高并发性和访问安全部署、严格的考试监控防作弊功能、PC移动支持多终端,随时随地考试、丰富的考试管理功能。'
  78. }
  79. ],
  80. }
  81. },
  82. data() {
  83. return {
  84. tableConfig: [
  85. {
  86. label: '课程名称',
  87. key: 'name'
  88. },
  89. {
  90. label: '使用行业',
  91. key: 'hangye'
  92. },
  93. {
  94. label: '使用人群',
  95. key: 'renqun'
  96. }
  97. ],
  98. tableData: [
  99. {
  100. name: '如何分析营销环境',
  101. shikanUrl: 'https://spdb.mtavip.com/f813728dc8fc41deaf79f6b2e77a0924/b15429d54c4a48539389fa79e0417760-abed0e92e4daa63adf70e162177497ad-fd.mp4',
  102. hangye: '全行业',
  103. renqun: '市场专员'
  104. },
  105. {
  106. name: '市场调查必备知识',
  107. shikanUrl: '',
  108. hangye: '全行业',
  109. renqun: '市场专员'
  110. },
  111. {
  112. name: '低成本营销策略',
  113. shikanUrl: '',
  114. hangye: '全行业',
  115. renqun: '市场专员'
  116. },
  117. {
  118. name: '如何进行有效的品牌调查',
  119. shikanUrl: '',
  120. hangye: '全行业',
  121. renqun: '市场专员'
  122. },
  123. {
  124. name: '铁军式营销',
  125. shikanUrl: '',
  126. hangye: '全行业',
  127. renqun: '市场专员'
  128. },
  129. {
  130. name: '区域市场管理的重点',
  131. shikanUrl: '',
  132. hangye: '全行业',
  133. renqun: '市场经理'
  134. },
  135. {
  136. name: '区域市场运作的认知与思考',
  137. shikanUrl: '',
  138. hangye: '全行业',
  139. renqun: '市场经理'
  140. },
  141. {
  142. name: '创新营销',
  143. shikanUrl: '',
  144. hangye: '全行业',
  145. renqun: '市场经理'
  146. },
  147. {
  148. name: '商务谈判的共赢之路',
  149. shikanUrl: '',
  150. hangye: '全行业',
  151. renqun: '市场经理'
  152. },
  153. {
  154. name: '企业微信营销管理全攻略',
  155. shikanUrl: '',
  156. hangye: '全行业',
  157. renqun: '市场经理'
  158. },
  159. ],
  160. tableData2: [
  161. {
  162. name: '高品质沟通与说服力',
  163. shikanUrl: 'https://spdb.mtavip.com/e6a69ffb67794f67a4954171dc306ee8/f0c35aeb8b2b42fca6e53b0e8c88d38b-ee89153189f93dd72235278de24d2e69-fd.mp4',
  164. hangye: '全行业',
  165. renqun: '市场专员'
  166. },
  167. {
  168. name: '攻心销售',
  169. shikanUrl: '',
  170. hangye: '全行业',
  171. renqun: '市场专员'
  172. },
  173. {
  174. name: '如何处理客户异议',
  175. shikanUrl: '',
  176. hangye: '全行业',
  177. renqun: '市场专员'
  178. },
  179. {
  180. name: '如何客服沟通障碍',
  181. shikanUrl: '',
  182. hangye: '全行业',
  183. renqun: '市场专员'
  184. },
  185. {
  186. name: '销售团队建设与管理',
  187. shikanUrl: '',
  188. hangye: '全行业',
  189. renqun: '市场专员'
  190. },
  191. {
  192. name: '大客户销售与管理',
  193. shikanUrl: '',
  194. hangye: '全行业',
  195. renqun: '市场经理'
  196. },
  197. {
  198. name: '销量倍增--激活经销商',
  199. shikanUrl: '',
  200. hangye: '全行业',
  201. renqun: '市场经理'
  202. },
  203. {
  204. name: '如何打造销售团队的激励体系',
  205. shikanUrl: '',
  206. hangye: '全行业',
  207. renqun: '市场经理'
  208. },
  209. {
  210. name: '原来这样销售可以百分百成交',
  211. shikanUrl: '',
  212. hangye: '全行业',
  213. renqun: '市场经理'
  214. },
  215. {
  216. name: '商务谈判锦囊妙计',
  217. shikanUrl: '',
  218. hangye: '全行业',
  219. renqun: '市场经理'
  220. },
  221. ],
  222. curVideo: '',
  223. visible: false,
  224. curActive: true,
  225. }
  226. },
  227. computed: {
  228. shichang() {
  229. return shichangyingxiao_shichang
  230. },
  231. xiaoshou() {
  232. return shichangyingxiao_xiaoshou
  233. },
  234. },
  235. methods: {
  236. shiKan({url}) {
  237. this.visible = true;
  238. this.curVideo = url;
  239. },
  240. changeStatus(code) {
  241. if (code === 'shichang') {
  242. this.curActive = true;
  243. } else {
  244. this.curActive = false;
  245. }
  246. }
  247. }
  248. }
  249. </script>
  250. <style lang="scss" scoped>
  251. .client-shichang-xiaoshou {
  252. margin: 0 auto;
  253. text-align: center;
  254. .nav-btns {
  255. width: 460px;
  256. height: 80px;
  257. margin: 46px auto 70px;
  258. border-radius: 80px;
  259. border: 1px solid #00b96b;
  260. display: flex;
  261. align-items: center;
  262. padding: 5px;
  263. span {
  264. width: 50%;
  265. height: 100%;
  266. line-height: 80px;
  267. text-align: center;
  268. cursor: pointer;
  269. display: inline-block;
  270. border-radius: 80px;
  271. outline: none;
  272. &.active {
  273. background: #00b96b;
  274. color: #fff;
  275. }
  276. }
  277. }
  278. }
  279. .platform-course-list {
  280. h4 {
  281. font-size: 30px;
  282. font-weight: 800;
  283. color: #333;
  284. text-align: center;
  285. margin-bottom: 98px;
  286. }
  287. }
  288. @media (max-width: 768px) {
  289. .btn-groups {
  290. margin-top: 10%;
  291. margin-bottom: 10%;
  292. }
  293. .platform-course-list {
  294. h4 {
  295. font-size: 20px;
  296. margin-bottom: 10%;
  297. }
  298. }
  299. .client-shichang-xiaoshou {
  300. margin: 0 auto;
  301. text-align: center;
  302. .nav-btns {
  303. width: 80%;
  304. height: 40px;
  305. margin: 25px auto 35px;
  306. border-radius: 40px;
  307. border: 1px solid #00b96b;
  308. display: flex;
  309. align-items: center;
  310. padding: 3px;
  311. span {
  312. display: inline-block;
  313. width: 50%;
  314. height: 100%;
  315. line-height: 40px;
  316. text-align: center;
  317. cursor: pointer;
  318. font-size: 16px;
  319. border-radius: 40px;
  320. outline: none;
  321. &.active {
  322. background: #00b96b;
  323. color: #fff;
  324. }
  325. }
  326. }
  327. }
  328. }
  329. </style>