更新版本和修复bug

This commit is contained in:
zhouliujun 2021-01-13 17:18:57 +08:00
parent d3156070eb
commit 023de1ad31
3 changed files with 73 additions and 11 deletions

View File

@ -410,9 +410,9 @@ npm run lint
### Customize configuration
See [Configuration Reference](https://cli.vuejs.org/config/).
## 更新日志
## 更新日志
> v1.2.8
> v1.2.8 更换底层默认sdk版本为2.9.3 修复options 遇到 update loop 错误 感谢"litmonw"网友的反馈与建议.
> v1.2.7 更换底层默认sdk版本为2.9.1的版本. 更新线上演示demo的选项

View File

@ -1,7 +1,7 @@
<template>
<div id="app">
<template v-if="!isShowMultiple && show">
<vue-aliplayer-v2 :source="source" ref="VueAliplayerV2" :options="options" />
<vue-aliplayer-v2 :source="source" ref="VueAliplayerV2" :options="options"/>
</template>
<div v-if="isShowMultiple && show" class="show-multiple">
<template v-for="x in 5">
@ -59,8 +59,44 @@ export default {
options: {
// source:'//player.alicdn.com/video/aliyunmedia.mp4',
isLive: !true, //
useFlashPrism: false, //flash
disableSeek: true //Seekfalse
skinLayout: [
{
'name': 'bigPlayButton',
'align': 'blabs',
'x': 30,
'y': 80
},
{
'name': 'infoDisplay'
},
{
'name': 'controlBar',
'align': 'blabs',
'x': 0,
'y': 0,
'children': [
{
'name': 'liveDisplay',
'align': 'tlabs',
'x': 15,
'y': 6
},
{
'name': 'fullScreenButton',
'align': 'tr',
'x': 10,
'y': 10
},
{
'name': 'volume',
'align': 'tr',
'x': 5,
'y': 10
}
]
}]
// useFlashPrism: false, //flash
// disableSeek: true //Seekfalse
},
source: '//player.alicdn.com/video/aliyunmedia.mp4',
// source: '//ivi.bupt.edu.cn/hls/cctv1.m3u8',

View File

@ -18,12 +18,12 @@ export default {
cssLink:{ //css
required: false,
type: [String],
default: `https://g.alicdn.com/de/prismplayer/2.9.1/skins/default/aliplayer-min.css`
default: `https://g.alicdn.com/de/prismplayer/2.9.3/skins/default/aliplayer-min.css`
},
scriptSrc:{ //js
required: false,
type: [String],
default: `https://g.alicdn.com/de/prismplayer/2.9.1/aliplayer-min.js`
default: `https://g.alicdn.com/de/prismplayer/2.9.3/aliplayer-min.js`
}
},
data () {
@ -34,6 +34,8 @@ export default {
id: null, //ID
width: '100%',
autoplay: true,
skinLayout: false,
progressMarkers: false
// isLive: true,
//,
// source: 'rtmp://182.145.195.238:1935/hls/1194076936807170050',
@ -127,9 +129,9 @@ export default {
options:{ //,
handler(){
this.init();
this.init();
},
deep:true
deep: true
}
},
mounted () {
@ -189,10 +191,10 @@ export default {
*/
initPlayer(){
if(typeof window.Aliplayer != 'undefined') {
const options = this.options;
const options = this.deepCloneObject(this.options);
if(options){
for (const key in options) {
this.config[key] = options[key];
this.config[key] = options[key];
}
}
if(this.source) this.config.source = this.source; //
@ -483,7 +485,31 @@ export default {
*/
off(ev,handle){
this.player && this.player.off(ev,handle);
},
/**
* 深度拷贝
* @param {*} obj
*/
deepCloneObject (obj) {
let objClone = Array.isArray(obj) ? [] : {};
if (obj && typeof obj === 'object') {
for (let key in obj) {
if (obj.hasOwnProperty(key)) {
//ojb
if (obj[key] && typeof obj[key] === 'object') {
objClone[key] = this.deepCloneObject(obj[key]);
} else {
//
objClone[key] = obj[key];
}
}
}
}
return objClone;
}
},
beforeDestroy(){ //
this.dispose(); //(,,bug)