shiChangYingXiao.vue 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368
  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">
  35. <freeTrialBtn class="btn-item" myType="kaoshi"/>
  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://1111',
  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://1111',
  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-banner-box {
  252. width: 100%;
  253. height: 736px;
  254. .client-platform-banner {
  255. height: 100%;
  256. width: 100%;
  257. }
  258. }
  259. .client-shichang-xiaoshou {
  260. margin: 0 auto;
  261. text-align: center;
  262. .nav-btns {
  263. width: 460px;
  264. height: 80px;
  265. margin: 46px auto 70px;
  266. border-radius: 80px;
  267. border: 1px solid #00b96b;
  268. display: flex;
  269. align-items: center;
  270. padding: 5px;
  271. span {
  272. width: 50%;
  273. height: 100%;
  274. line-height: 80px;
  275. text-align: center;
  276. cursor: pointer;
  277. display: inline-block;
  278. border-radius: 80px;
  279. outline: none;
  280. &.active {
  281. background: #00b96b;
  282. color: #fff;
  283. }
  284. }
  285. }
  286. }
  287. .platform-course-list {
  288. h4 {
  289. font-size: 30px;
  290. font-weight: 800;
  291. color: #333;
  292. text-align: center;
  293. margin-bottom: 98px;
  294. }
  295. }
  296. @media (max-width: 768px) {
  297. .btn-groups {
  298. margin-top: 10%;
  299. margin-bottom: 10%;
  300. }
  301. .platform-course-list {
  302. h4 {
  303. font-size: 20px;
  304. margin-bottom: 10%;
  305. }
  306. }
  307. .client-shichang-xiaoshou {
  308. margin: 0 auto;
  309. text-align: center;
  310. .nav-btns {
  311. width: 80%;
  312. height: 40px;
  313. margin: 25px auto 35px;
  314. border-radius: 40px;
  315. border: 1px solid #00b96b;
  316. display: flex;
  317. align-items: center;
  318. padding: 3px;
  319. span {
  320. display: inline-block;
  321. width: 50%;
  322. height: 100%;
  323. line-height: 40px;
  324. text-align: center;
  325. cursor: pointer;
  326. font-size: 16px;
  327. border-radius: 40px;
  328. outline: none;
  329. &.active {
  330. background: #00b96b;
  331. color: #fff;
  332. }
  333. }
  334. }
  335. }
  336. }
  337. </style>