商家首页

This commit is contained in:
2020-07-06 09:10:34 +08:00
parent 19b1dad0a8
commit 40f03de79f
5 changed files with 111 additions and 5 deletions

View File

@@ -0,0 +1,26 @@
<template>
<view class="videoTop">
<video :src="url" :show-fullscreen-btn="true"></video>
</view>
</template>
<style lang="scss" scoped>
.videoTop{
width: 100%;
height: 284rpx;
margin-bottom: 20rpx;
>video{
width: 100%;
height: 100%;
}
}
</style>
<script>
export default {
name:"videoTop",
data(){
return {
}
},
props:['url']
}
</script>