|
@@ -59,6 +59,20 @@
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<IsVip ref="isLoginVip" v-model="vipVisible" />
|
|
<IsVip ref="isLoginVip" v-model="vipVisible" />
|
|
|
|
+ <div
|
|
|
|
+ v-show="selection_show"
|
|
|
|
+ ref="SelectionListComponents"
|
|
|
|
+ class="selection-list-components"
|
|
|
|
+ >
|
|
|
|
+ <div
|
|
|
|
+ class="list-item"
|
|
|
|
+ v-for="(item, index) in this.info.video_arr"
|
|
|
|
+ :class="{ current: currentVideo.id == item.id }"
|
|
|
|
+ @click="handleSelection(index)"
|
|
|
|
+ >
|
|
|
|
+ {{ item.title }}
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</template>
|
|
|
|
|
|
@@ -98,14 +112,8 @@ export default {
|
|
// 阿里播放器初始化结束
|
|
// 阿里播放器初始化结束
|
|
aliPlayerInitEnd: false,
|
|
aliPlayerInitEnd: false,
|
|
|
|
|
|
- // 是否replace跳转页面 1是
|
|
|
|
- replace: 0,
|
|
|
|
-
|
|
|
|
- // 全屏-选集弹窗
|
|
|
|
- fullScreenSelection: false,
|
|
|
|
-
|
|
|
|
- //倍速-弹窗
|
|
|
|
- doubleSpeed: false,
|
|
|
|
|
|
+ // 选集弹窗
|
|
|
|
+ selection_show: false,
|
|
};
|
|
};
|
|
},
|
|
},
|
|
computed: {
|
|
computed: {
|
|
@@ -114,8 +122,14 @@ export default {
|
|
const videoArr = this.info.video_arr || [];
|
|
const videoArr = this.info.video_arr || [];
|
|
return videoArr.length > 0 ? videoArr[this.videoArrIndex] : {};
|
|
return videoArr.length > 0 ? videoArr[this.videoArrIndex] : {};
|
|
},
|
|
},
|
|
|
|
+ nextIndex() {
|
|
|
|
+ return (
|
|
|
|
+ this.info.video_arr.findIndex((item) => item == this.currentVideo) + 1
|
|
|
|
+ );
|
|
|
|
+ },
|
|
},
|
|
},
|
|
mounted() {
|
|
mounted() {
|
|
|
|
+ this.selection_show = false;
|
|
this.initPlayer();
|
|
this.initPlayer();
|
|
},
|
|
},
|
|
methods: {
|
|
methods: {
|
|
@@ -154,15 +168,12 @@ export default {
|
|
// 初始化阿里云播放器
|
|
// 初始化阿里云播放器
|
|
initAliPlayer(url, cover, ali_vid) {
|
|
initAliPlayer(url, cover, ali_vid) {
|
|
this.ali_vid = ali_vid;
|
|
this.ali_vid = ali_vid;
|
|
|
|
+ let that = this;
|
|
if (!!ali_vid === false) {
|
|
if (!!ali_vid === false) {
|
|
this.aliPlayerInitEnd = true;
|
|
this.aliPlayerInitEnd = true;
|
|
return;
|
|
return;
|
|
}
|
|
}
|
|
- // 自定义组件 - 手机号
|
|
|
|
- const positionPhone = Aliplayer.Component({
|
|
|
|
- init: () => {},
|
|
|
|
- createEl: (el) => el.appendChild(this.$refs["position-phone"]),
|
|
|
|
- });
|
|
|
|
|
|
+
|
|
const aliplayerCreatedFn = (player) => {
|
|
const aliplayerCreatedFn = (player) => {
|
|
this.aliPlayerInitEnd = true;
|
|
this.aliPlayerInitEnd = true;
|
|
// 360浏览器层级问题
|
|
// 360浏览器层级问题
|
|
@@ -212,6 +223,66 @@ export default {
|
|
/* return返回的是自定义起播时间 */
|
|
/* return返回的是自定义起播时间 */
|
|
return localStorage.getItem(memoryVideo);
|
|
return localStorage.getItem(memoryVideo);
|
|
};
|
|
};
|
|
|
|
+ // 自定义组件 - 手机号水印
|
|
|
|
+ const positionPhone = Aliplayer.Component({
|
|
|
|
+ init: () => {},
|
|
|
|
+ createEl: (el) => el.appendChild(this.$refs["position-phone"]),
|
|
|
|
+ });
|
|
|
|
+ // 自定义组件 - 下一集
|
|
|
|
+ const NextComponent = Aliplayer.Component({
|
|
|
|
+ createEl: (el) => {
|
|
|
|
+ const bar = [...el.children].find((item) =>
|
|
|
|
+ item.className.includes("prism-controlbar")
|
|
|
|
+ );
|
|
|
|
+ const next = document.createElement("div");
|
|
|
|
+ // next.style.display =
|
|
|
|
+ // this.nextIndex == this.info.video_arr.length - 1 ? "none !important" : "block";
|
|
|
|
+ next.setAttribute("class", "prism-next-btn");
|
|
|
|
+ next.addEventListener("click", (_) =>
|
|
|
|
+ that.handleSelection(that.nextIndex)
|
|
|
|
+ );
|
|
|
|
+ bar.appendChild(next);
|
|
|
|
+ },
|
|
|
|
+ });
|
|
|
|
+ // 自定义组件 - 网页全屏
|
|
|
|
+ const PageFullScreenComponent = Aliplayer.Component({
|
|
|
|
+ createEl: (el) => {
|
|
|
|
+ const bar = [...el.children].find((item) =>
|
|
|
|
+ item.className.includes("prism-controlbar")
|
|
|
|
+ );
|
|
|
|
+ const fullScreen = document.createElement("div");
|
|
|
|
+ fullScreen.addEventListener("click", (_) =>
|
|
|
|
+ that.$emit("handleFullScreen")
|
|
|
|
+ );
|
|
|
|
+ fullScreen.setAttribute("class", "prism-page-fullscreen-btn");
|
|
|
|
+ bar.appendChild(fullScreen);
|
|
|
|
+ },
|
|
|
|
+ });
|
|
|
|
+ // 自定义组件 - 选集按钮
|
|
|
|
+ const SelectionComponents = Aliplayer.Component({
|
|
|
|
+ createEl: (el) => {
|
|
|
|
+ const bar = [...el.children].find((item) =>
|
|
|
|
+ item.className.includes("prism-controlbar")
|
|
|
|
+ );
|
|
|
|
+ const selection = document.createElement("div");
|
|
|
|
+ selection.addEventListener(
|
|
|
|
+ "click",
|
|
|
|
+ (_) => (that.selection_show = true)
|
|
|
|
+ );
|
|
|
|
+
|
|
|
|
+ selection.setAttribute("class", "selection-components");
|
|
|
|
+ selection.innerHTML = "选集";
|
|
|
|
+ bar.appendChild(selection);
|
|
|
|
+ },
|
|
|
|
+ });
|
|
|
|
+ // 自定义组件 - 选集列表
|
|
|
|
+ const SelectionListComponents = Aliplayer.Component({
|
|
|
|
+ createEl: (el) => {
|
|
|
|
+ const selection = this.$refs["SelectionListComponents"];
|
|
|
|
+ el.appendChild(selection);
|
|
|
|
+ },
|
|
|
|
+ });
|
|
|
|
+
|
|
const aliPlayerOption = {
|
|
const aliPlayerOption = {
|
|
id: "player-con",
|
|
id: "player-con",
|
|
format: "m3u8",
|
|
format: "m3u8",
|
|
@@ -223,7 +294,7 @@ export default {
|
|
rePlay: false, // 播放器自动循环播放
|
|
rePlay: false, // 播放器自动循环播放
|
|
playsinline: true, // H5是否内置播放
|
|
playsinline: true, // H5是否内置播放
|
|
preload: true, // 播放器自动加载
|
|
preload: true, // 播放器自动加载
|
|
- controlBarVisibility: "hover", // 控制栏显示方式
|
|
|
|
|
|
+ controlBarVisibility: "always", // 控制栏显示方式
|
|
useH5Prism: true, // 指定使用H5播放器
|
|
useH5Prism: true, // 指定使用H5播放器
|
|
keyShortCuts: true, // 是否启用快捷键
|
|
keyShortCuts: true, // 是否启用快捷键
|
|
showBarTime: 3000,
|
|
showBarTime: 3000,
|
|
@@ -232,6 +303,25 @@ export default {
|
|
name: "positionPhone",
|
|
name: "positionPhone",
|
|
type: positionPhone,
|
|
type: positionPhone,
|
|
},
|
|
},
|
|
|
|
+ that.nextIndex !== that.info.video_arr.length
|
|
|
|
+ ? {
|
|
|
|
+ name: "NextComponent",
|
|
|
|
+ type: NextComponent,
|
|
|
|
+ }
|
|
|
|
+ : "",
|
|
|
|
+ {
|
|
|
|
+ name: "PageFullScreenComponent",
|
|
|
|
+ type: PageFullScreenComponent,
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ name: "SelectionComponents",
|
|
|
|
+ type: SelectionComponents,
|
|
|
|
+ },
|
|
|
|
+
|
|
|
|
+ {
|
|
|
|
+ name: "SelectionListComponents",
|
|
|
|
+ type: SelectionListComponents,
|
|
|
|
+ },
|
|
{
|
|
{
|
|
name: "RateComponent",
|
|
name: "RateComponent",
|
|
type: AliPlayerComponent.RateComponent,
|
|
type: AliPlayerComponent.RateComponent,
|
|
@@ -250,7 +340,7 @@ export default {
|
|
type: AliPlayerComponent.MemoryPlayComponent,
|
|
type: AliPlayerComponent.MemoryPlayComponent,
|
|
args: [false, getTime, saveTime], //args里的参数表示:第一个参数表示是否自动播放记忆时间,false为否,需要点击跳转到上次记忆的时间;第二和三个参数表示获取的时间和存入的时间
|
|
args: [false, getTime, saveTime], //args里的参数表示:第一个参数表示是否自动播放记忆时间,false为否,需要点击跳转到上次记忆的时间;第二和三个参数表示获取的时间和存入的时间
|
|
},
|
|
},
|
|
- ],
|
|
|
|
|
|
+ ].filter((item) => item),
|
|
};
|
|
};
|
|
VideoDemandService.getVideoCredentials().then(({ data }) => {
|
|
VideoDemandService.getVideoCredentials().then(({ data }) => {
|
|
const encryptOption = {
|
|
const encryptOption = {
|
|
@@ -300,17 +390,22 @@ export default {
|
|
});
|
|
});
|
|
}
|
|
}
|
|
},
|
|
},
|
|
|
|
+ // 播放下一集
|
|
|
|
+ handleSelection(index) {
|
|
|
|
+ this.aliPlayer.fullscreenService.cancelFullScreen();
|
|
|
|
+ this.$emit("changeEpisode", index);
|
|
|
|
+ },
|
|
},
|
|
},
|
|
};
|
|
};
|
|
</script>
|
|
</script>
|
|
-
|
|
|
|
|
|
+<style lang="scss">
|
|
|
|
+@import "~@/assets/css/video-box.scss";
|
|
|
|
+</style>
|
|
<style lang="scss" scoped>
|
|
<style lang="scss" scoped>
|
|
-@import "~@/assets/css/video-box.css";
|
|
|
|
-
|
|
|
|
.video-player {
|
|
.video-player {
|
|
width: 100%;
|
|
width: 100%;
|
|
- height: 100%;
|
|
|
|
position: relative;
|
|
position: relative;
|
|
|
|
+ aspect-ratio: 16/9;
|
|
.video-box {
|
|
.video-box {
|
|
width: 100%;
|
|
width: 100%;
|
|
height: 100%;
|
|
height: 100%;
|