合成照相馆小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
photo_uniapp/pages/web/video.vue

53 lines
976 B

<template>
<view class="container">
<view class="videoBox">
<video id="myVideo" :style="{width: '100%', height: '100%'}"
:src="video_src" @error="videoErrorCallback" :autoplay="false" controls></video>
</view>
</view>
</template>
<script>
export default {
data() {
return {
old_url:'',
video_src:'',
}
},
onLoad(option) {
//数据
var _this =this;
var url = option.url;
var title = option.title;
if(_this.$com.isNull(url))
{
uni.navigateBack({
delta:1,
})
}
_this.old_url = url;
_this.video_src = decodeURIComponent(url);
if(!_this.$com.isNull(title))
{
var pageTitle = title;
uni.setNavigationBarTitle({
title:pageTitle,
})
}
},
methods: {
videoErrorCallback(e)
{
console.log(e);
},
}
}
</script>
<style lang="scss">
page{ height:100%; width: 100%;}
.container{width: 100%; height: 100%;}
.videoBox{ width: 100%; height: 100%;}
</style>