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.
30 lines
395 B
30 lines
395 B
<template>
|
|
<view class="video bottom-cell-group" >
|
|
<video :src="jdata.options.video_link" :poster="jdata.options.video_img" controls></video>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: "jshopvideo",
|
|
props: {
|
|
jdata:{
|
|
type: Object,
|
|
required: true,
|
|
}
|
|
},
|
|
onLoad(){
|
|
|
|
},
|
|
methods: {
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
.video video{
|
|
width: 100%;
|
|
min-height: 200upx;
|
|
}
|
|
</style>
|
|
|