ppt.vue 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450
  1. <template>
  2. <div class="client-course-page course-ppt">
  3. <!-- 宣传图 -->
  4. <div class="client-course-banner" :style="{backgroundImage:`url(${banner_image})`}" @click="goQuotation"></div>
  5. <!-- 动画分类显示区域 -->
  6. <div class="client-course-classification">
  7. <div class="client-container">
  8. <courseCardTitle :title="project.title" class="classification-title"></courseCardTitle>
  9. <ul class="classification-items">
  10. <li class="classification-item" :class="{active:item.type === activeItem }" v-for="item in project.data" @click="changeItem(item)">{{ item.title }}</li>
  11. </ul>
  12. </div>
  13. </div>
  14. <!-- 动画分类详情区域 -->
  15. <div class="client-course-classification__info">
  16. <div class="client-container">
  17. <courseCardTitle :title="curItem.title" class="classification__info-title"></courseCardTitle>
  18. <div class="classification__info-mainTitle">{{curItem.mainTitle}}</div>
  19. <div class="classification__info-subHead">{{curItem.subhead}}</div>
  20. <ul class="classification__info-videos">
  21. <li v-for="item in curItem.videos" class="classification-video-item">
  22. <img :src="item.imgUrl" />
  23. </li>
  24. </ul>
  25. <div class="classification-btns">
  26. <a class="classification-online-zixun" :href="zixunUrl">在线咨询</a>
  27. </div>
  28. </div>
  29. </div>
  30. <!-- 课程报价区域 -->
  31. <div class="client-course-quotation" ref="quotation">
  32. <div class="client-container quotation-wrap">
  33. <div class="left-text">
  34. <h3>课程定制在线报价</h3>
  35. <p>栋科客服人员会在30分钟内与你取得联系</p>
  36. </div>
  37. <courseBaojia class="baojia-form" tag="ppt" :user-list="userList" :sum="custom_sum"></courseBaojia>
  38. </div>
  39. </div>
  40. </div>
  41. </template>
  42. <script>
  43. import courseCardTitle from "@/components/course/course-card-title";
  44. import courseBaojia from "@/components/course/course-baojia";
  45. export default {
  46. name: 'animation',
  47. layout: 'templateB',
  48. head() {
  49. return {
  50. title: '课件PPT制作_PPT修改_PPT美化_PPT设计_教学微课制作_教学课件制作',
  51. meta: [
  52. {
  53. name: 'keywords',
  54. content: '课件PPT,PPT制作,课件PPT制作,教学微课,教学课件,微课课件,教学课件制作,课件制作,PPT修改,PPT美化,PPT设计'
  55. },
  56. {
  57. name:'description',
  58. content:'麦塔拥有国内专业、成熟的课件PPT制作团队,丰富的电子课程制作经验,业务方向包括教学设计体验、图文内容演示、教学课件、微课、课件PPT等,在院校教育、零售连锁行业、汽车行业、金融等12大行业课程开发经验超过15年,规范可靠的研发流程、完善的质量评估和卓越的项目管理体系,能高效稳定地保障支付。'
  59. }
  60. ]
  61. }
  62. },
  63. components: {
  64. courseCardTitle,
  65. courseBaojia
  66. },
  67. async asyncData({$axios, store}) {
  68. // 设置选中菜单
  69. store.commit('setActiveNav', '/courseware');
  70. let [ res2, res3] = await Promise.all([
  71. $axios.$post(`/develop/sum`, {}),
  72. $axios.$post(`/develop/userlist`, {}),
  73. ])
  74. return {
  75. custom_sum: res2.data || 0,
  76. userList: res3.data.data || []
  77. }
  78. },
  79. data() {
  80. return {
  81. banner_image: require(`~/static/images/client/course/ppt/ppt-banner.png`),
  82. project: {
  83. title: '课件PPT',
  84. data: [
  85. {
  86. type: 'kejianPPT',
  87. title: '课件PPT',
  88. mainTitle: '幼儿园课件/小初高课件/院校课件/培训课件',
  89. subhead: '专精课程类PPT制作-高效/高质/低价',
  90. videos: [
  91. {
  92. title: '课件PPT',
  93. purpose: '产品发布', // 用途
  94. imgUrl: require('~/static/images/client/course/ppt/jiaoxue01.png'),
  95. url: '',
  96. },
  97. {
  98. title: '课件PPT',
  99. purpose: '外语学习', // 用途
  100. imgUrl: require('~/static/images/client/course/ppt/jiaoxue02.png'),
  101. url: '',
  102. },
  103. {
  104. title: '课件PPT',
  105. purpose: '外语学习', // 用途
  106. imgUrl: require('~/static/images/client/course/ppt/jiaoxue03.png'),
  107. url: '',
  108. }
  109. ]
  110. },
  111. {
  112. type: 'yanshiPPT',
  113. title: '演示PPT',
  114. mainTitle: '工业演示/医疗演示/建筑演示/机械演示',
  115. subhead: '做演示类PPT,麦塔更优秀!',
  116. videos: [
  117. {
  118. title: '演示PPT',
  119. purpose: '电子书', // 用途
  120. imgUrl: require('~/static/images/client/course/ppt/yanshi01.png'),
  121. url: '',
  122. },
  123. {
  124. title: '演示PPT',
  125. purpose: '功能演示', // 用途
  126. imgUrl: require('~/static/images/client/course/ppt/yanshi02.png'),
  127. url: '',
  128. },
  129. {
  130. title: '演示PPT',
  131. purpose: '金融制度', // 用途
  132. imgUrl: require('~/static/images/client/course/ppt/yanshi03.png'),
  133. url: '',
  134. }
  135. ]
  136. },
  137. {
  138. type: 'shangyePPT',
  139. title: '商业PPT',
  140. mainTitle: '招商计划/商业活动/企业宣传/招商路演',
  141. subhead: '投资咨询师与营销分析师协作完成',
  142. videos: [
  143. {
  144. title: '商业PPT',
  145. purpose: '产品推广', // 用途
  146. imgUrl: require('~/static/images/client/course/ppt/shangye01.png'),
  147. url: '',
  148. },
  149. {
  150. title: '商业PPT',
  151. purpose: '数据展示', // 用途
  152. imgUrl: require('~/static/images/client/course/ppt/shangye02.png'),
  153. url: '',
  154. },
  155. {
  156. title: '商业PPT',
  157. purpose: '商业汇报', // 用途
  158. imgUrl: require('~/static/images/client/course/ppt/shangye03.png'),
  159. url: '',
  160. }
  161. ]
  162. },
  163. {
  164. type: 'huibaoPPT',
  165. title: '汇报PPT',
  166. mainTitle: '工作汇报/年终汇报/述职报告/护理查房/品管圈/病例讨论/PDCA',
  167. subhead: '精美制作-专职文案-一步到位',
  168. videos: [
  169. {
  170. title: '汇报PPT',
  171. purpose: '产品汇报', // 用途
  172. imgUrl: require('~/static/images/client/course/ppt/huibao01.png'),
  173. url: '',
  174. },
  175. {
  176. title: '汇报PPT',
  177. purpose: '企业宣传', // 用途
  178. imgUrl: require('~/static/images/client/course/ppt/huibao02.png'),
  179. url: '',
  180. },
  181. {
  182. title: '汇报PPT',
  183. purpose: '知识汇报', // 用途
  184. imgUrl: require('~/static/images/client/course/ppt/huibao03.png'),
  185. url: '',
  186. }
  187. ]
  188. }
  189. ]
  190. },
  191. zixunUrl: "https://affim.baidu.com/cps/chat?siteId=17930746&userId=40179606&siteToken=d9c57b2ea4cbedbb044677ef47a1e2d1",
  192. activeItem: 'kejianPPT'
  193. }
  194. },
  195. computed: {
  196. curItem() {
  197. return this.project.data.find(item => item.type === this.activeItem)
  198. },
  199. },
  200. methods: {
  201. changeItem(item) {
  202. this.activeItem = item.type;
  203. },
  204. goQuotation() {
  205. document.documentElement.scrollTop = this.$refs.quotation.offsetTop-150;
  206. window.pageYOffset = this.$refs.quotation.offsetTop -150;
  207. document.body.scrollTop=this.$refs.quotation.offsetTop -150;
  208. }
  209. }
  210. };
  211. </script>
  212. <style lang="scss" scoped>
  213. .course-ppt {
  214. .client-course-banner {
  215. cursor: pointer;
  216. }
  217. .client-course-classification {
  218. box-sizing: border-box;
  219. text-align: center;
  220. height: 737px;
  221. padding-top: 135px;
  222. .classification-title {
  223. margin-bottom: 144px;
  224. }
  225. .classification-items {
  226. display: flex;
  227. justify-content: space-between;
  228. align-items: center;
  229. }
  230. .classification-item {
  231. background-color: #cccccc;
  232. width: 250px;
  233. height: 280px;
  234. }
  235. }
  236. .client-course-classification__info {
  237. box-sizing: border-box;
  238. background-image: url("~static/images/client/course/animation/course-bg-01.png");
  239. padding-top: 84px;
  240. height: 843px;
  241. .classification__info-title {
  242. margin-bottom: 57px;
  243. }
  244. .classification__info-mainTitle {
  245. text-align: center;
  246. font-weight: normal;
  247. color: #333333;
  248. margin-bottom: 16px;
  249. font-size: 24px;
  250. }
  251. .classification__info-subHead {
  252. text-align: center;
  253. font-size: 18px;
  254. font-weight: 400;
  255. color: #333333;
  256. }
  257. .classification__info-videos {
  258. display: flex;
  259. justify-content: center;
  260. align-items: center;
  261. margin: 122px 0 50px 0;
  262. .classification-video-item {
  263. background-color: #ccc;
  264. margin-right: 20px;
  265. width: 380px;
  266. height: 280px;
  267. &:last-child {
  268. margin-right: 0;
  269. }
  270. img {
  271. width: 380px;
  272. height: 280px;
  273. }
  274. }
  275. }
  276. .classification-btns {
  277. text-align: center;
  278. .classification-online-zixun {
  279. display: inline-block;
  280. background: #0065cd;
  281. border-radius: 6px;
  282. text-align: center;
  283. color: #ffffff;
  284. font-weight: 400;
  285. font-size: 16px;
  286. line-height: 48px;
  287. margin-bottom: 128px;
  288. width: 138px;
  289. height: 50px;
  290. }
  291. }
  292. }
  293. .client-course-quotation {
  294. background-image: url("~static/images/client/course/btns/course-bg-b1.png");
  295. height: 637px;
  296. .quotation-wrap {
  297. display: flex;
  298. justify-content: space-between;
  299. .left-text {
  300. margin-top: 282px;
  301. h3 {
  302. font-size: 48px;
  303. font-weight: 700;
  304. text-align: left;
  305. color: #fefefe;
  306. letter-spacing: 1.2px;
  307. margin-bottom: 33px;
  308. width: 410px;
  309. height: 47px;
  310. }
  311. p {
  312. font-size: 20px;
  313. font-weight: 400;
  314. text-align: left;
  315. color: #ffffff;
  316. width: 364px;
  317. height: 20px;
  318. }
  319. }
  320. .baojia-form {
  321. margin-top: 82px;
  322. margin-right: 120px;
  323. }
  324. }
  325. }
  326. @media (max-width: 768px){
  327. .client-course-classification {
  328. box-sizing: border-box;
  329. text-align: center;
  330. height: 400px;
  331. padding-top: 35px;
  332. .classification-title {
  333. margin-bottom: 42px;
  334. }
  335. .classification-items{
  336. flex-wrap: wrap;
  337. justify-content: space-around;
  338. }
  339. .classification-item {
  340. box-sizing: border-box;
  341. margin: 10px;
  342. width: calc(50% - 20px);
  343. height: 140px;
  344. &:not(:nth-child(even)) {
  345. margin-right: 0;
  346. }
  347. &:nth-child(n+3) {
  348. margin-top: 0;
  349. }
  350. }
  351. }
  352. .client-course-classification__info{
  353. height: auto;
  354. padding-top: 42px;
  355. .classification__info-videos {
  356. flex-wrap: wrap;
  357. flex-direction: column;
  358. box-sizing: border-box;
  359. padding: 20px;
  360. margin: 30px 0 0 0;
  361. .classification-video-item {
  362. height: auto;
  363. flex: 1;
  364. width: 100%;
  365. margin: 0 0 10px;
  366. img {
  367. height: auto;
  368. width: 100%;
  369. }
  370. }
  371. }
  372. .classification-btns {
  373. .classification-online-zixun {
  374. margin-bottom: 60px;
  375. }
  376. }
  377. }
  378. .client-course-quotation {
  379. margin-bottom: 200px;
  380. height: 400px;
  381. .quotation-wrap {
  382. flex-direction: column;
  383. .left-text {
  384. margin: 40px auto 0;
  385. h3 {
  386. text-align: center;
  387. font-size: 20px;
  388. margin-bottom: 10px;
  389. width: 100%;
  390. }
  391. p {
  392. text-align: center;
  393. width: 100%;
  394. font-size: 16px;
  395. }
  396. }
  397. .baojia-form {
  398. margin: 0 auto;
  399. }
  400. }
  401. }
  402. }
  403. }
  404. </style>