123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177 |
- <template>
- <div class="bg2C2C2D">
- <video v-for="item in topADList" id="ad" :key="item.id" class="w345h120" :poster="item.imgUrls[0]" :src="item.videoUrl" @click="playAd()" />
- <div v-for="item in videoList" :key="item.plateId">
- <div class="fs16">{{item.plateName}}</div>
- <div :class="item.displayMode === 1 ? 'jjjc-list' : 'jcjc-list'">
- <video v-for="ele in item.videoCourseList" :id="'el-video-' + ele.id" :key="ele.id" class="w165h148" preload="auto" :poster="videoURL(ele.coverImageKey)" :src="videoURL(ele.videoKey)" @click="play(item, ele)" />
- </div>
- </div>
- <div class="return out"><div class="in"><img src="~/assets/image/activity/invite-user/guide/left.png" /></div></div>
- </div>
- </template>
- <script>
- import { fileKeyToUrl } from '@/plugins/file-center.js';
- export default {
- name: 'Guide',
- auth: false,
- data() {
- return {
- videoList: [],
- topADList: [],
- token: ''
- }
- },
- fetch() {
- this.token = this.$route.query.token;
- },
- computed: {
- videoURL() {
- return (key) => {
- return fileKeyToUrl + key
- }
- }
- },
- created() {
- this.getActiveInfo()
- this.getAdInfoByAdPlace()
- },
- methods: {
- async getActiveInfo() {
- const res = await this.$axios.$get('/videoCourse/client/list');
- this.videoList = res.data;
- },
- async getAdInfoByAdPlace() {
- const data = {
- id: 1,
- adPlace: 511,
- os: 1
- }
- const res = await this.$axios.$post('/v5/advertising/getAdInfoByAdPlace', data);
- this.topADList = res.data;
- },
- play(item, ele) {
- const elVideo = document.getElementById('el-video-' + ele.id)
- if (elVideo.requestFullscreen) {
- elVideo.requestFullscreen()
- elVideo.play()
- } else if (elVideo.mozRequestFullscreen) {
- elVideo.mozRequestFullscreen()
- elVideo.play()
- } else if (elVideo.webkitRequestFullscreen) {
- elVideo.webkitRequestFullscreen()
- elVideo.play()
- }
- this.submit(item, ele, 1)
- },
- playAd(item, ele) {
- const elVideo = document.getElementById('ad')
- if (elVideo.requestFullscreen) {
- elVideo.requestFullscreen()
- elVideo.play()
- } else if (elVideo.mozRequestFullscreen) {
- elVideo.mozRequestFullscreen()
- elVideo.play()
- } else if (elVideo.webkitRequestFullscreen) {
- elVideo.webkitRequestFullscreen()
- elVideo.play()
- }
- this.submit(item, ele, 2)
- },
- submit(item, ele, flag) {
- const data = flag === 1 ? { id: ele.id, plateId: item.plateId, type: flag, videoId: ele.id } : { type: 2 }
- this.$axios.$post('/videoCourse/statistics/save', data, {headers: {Authorization: this.token}});
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .bg2C2C2D {
- background-color: #1C1C1E;
- min-height: 100vh;
- overflow: hidden;
- }
- .w345h120 {
- width: 345px;
- height: 120px;
- margin: 15px;
- }
- .fs16 {
- font-weight: 500;
- color: #ffffff;
- font-size: 16px;
- margin-left: 15px;
- display: flex;
- align-items: center;
- }
- .jcjc-list {
- padding: 0 15px;
- overflow-x: scroll;
- display: flex;
- margin: 15px 0;
- .w165h148 {
- margin-right: 10px;
- &:last-child {
- margin-right: 0;
- }
- }
- }
- .fs16::before {
- content: '';
- display: inline-block;
- width: 6px;
- height: 14px;
- background: #3b7fff;
- border-radius: 3px 3px 3px 3px;
- opacity: 1;
- margin-right: 6px;
- }
- .w144h140 {
- width: 144px;
- height: 140px;
- margin-right: 10px;
- }
- .w144h140:last-child {
- margin-right: 0;
- }
- .jjjc-list {
- display: flex;
- flex-flow: wrap;
- justify-content: space-between;
- padding: 15px;
- }
- .w165h148 {
- width: 165px;
- height: 148px;
- object-fit: contain;
- margin-bottom: 15px;
- }
- .return {
- width: 42px;
- height: 42px;
- margin-left: 20px;
- margin-bottom: 40px;
- &.out {
- border-radius: 50%;
- padding: 1px;
- background: linear-gradient(46deg, rgba(48, 49, 53, 1), rgba(113, 116, 127, 1));
- box-shadow: 0px 9px 17px 0px rgba(0,0,0,0.5);
- }
- .in {
- width: 40px;
- height: 40px;
- border-radius: 50%;
- background: linear-gradient(180deg, #232427 0%, #4B4C52 100%);
- opacity: 1;
- text-align: center;
- line-height: 40px;
- }
-
- img {
- width: 16px;
- height: 16px;
- }
- }
- </style>
|