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.
24 lines
400 B
24 lines
400 B
<template>
|
|
<view>
|
|
<!-- <video :src="baseImgUrl+'shian.mp4'" style="width: 100%;" autoplay /> -->
|
|
<video :src="url" style="width: 100%;" autoplay />
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
baseImgUrl: getApp().globalData.config.iamgeBaseUrl,
|
|
url: null,
|
|
};
|
|
},
|
|
onLoad(option) {
|
|
this.url = option.url
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
|
|
</style> |