7 changed files with 164 additions and 85 deletions
@ -1,6 +1,6 @@ |
|||||||
export default { |
export default { |
||||||
// baseUrl: 'http://192.168.0.105//index.php/v1',
|
baseUrl: 'http://192.168.0.105//index.php/v1', |
||||||
// filePreview:'http://192.168.0.105/static/uploads/',
|
filePreview:'http://192.168.0.105/static/uploads/', |
||||||
baseUrl: 'http://192.168.10.164//index.php/v1', |
// baseUrl: 'http://192.168.10.164//index.php/v1',
|
||||||
filePreview:'http://192.168.10.164/static/uploads/' |
// filePreview:'http://192.168.10.164/static/uploads/'
|
||||||
} |
} |
@ -0,0 +1,75 @@ |
|||||||
|
<template> |
||||||
|
<div class="Test"> |
||||||
|
<BaseHeader> |
||||||
|
<template v-slot:center> |
||||||
|
<span class="f16">申报学校信息</span> |
||||||
|
</template> |
||||||
|
</BaseHeader> |
||||||
|
<div class="content"> |
||||||
|
<SlideColumnList |
||||||
|
ref="slideList" |
||||||
|
direction="column" |
||||||
|
> |
||||||
|
<SlideItem v-for="(item,index) of videos" :key="index"> |
||||||
|
<Video1 |
||||||
|
v-model:video="videos[index]" |
||||||
|
@showComments="isCommenting = !isCommenting" |
||||||
|
@showShare="isSharing = !isSharing" |
||||||
|
@goUserInfo="baseActiveIndex = 1" |
||||||
|
></Video1> |
||||||
|
</SlideItem> |
||||||
|
</SlideColumnList> |
||||||
|
|
||||||
|
</div> |
||||||
|
</div> |
||||||
|
</template> |
||||||
|
<script> |
||||||
|
export default { |
||||||
|
name: "Test", |
||||||
|
props: {}, |
||||||
|
data() { |
||||||
|
return { |
||||||
|
videos: [ |
||||||
|
{ |
||||||
|
"id": "d2f55373-80dd-4c14-93a7-7a40e9cbf049", |
||||||
|
"posterUrl": "images/20210815/0.png", |
||||||
|
"videoUrl": "http://qy9rc9xff.hn-bkt.clouddn.com/9.mp4", |
||||||
|
"title": "", |
||||||
|
"likeNum": null, |
||||||
|
"commentNum": null, |
||||||
|
"sharedNum": null, |
||||||
|
"duration": null, |
||||||
|
"musicId": "126f9654-450b-466c-8003-085199a7f9b9", |
||||||
|
"browseCount": 0, |
||||||
|
"createTime": "1629683008", |
||||||
|
"createBy": "3e301843-e8bb-41c0-8240-9c4b42a17341", |
||||||
|
"status": 1 |
||||||
|
} |
||||||
|
], |
||||||
|
} |
||||||
|
}, |
||||||
|
computed: {}, |
||||||
|
created() { |
||||||
|
}, |
||||||
|
methods: {} |
||||||
|
} |
||||||
|
</script> |
||||||
|
|
||||||
|
<style scoped lang="less"> |
||||||
|
@import "../assets/scss/index"; |
||||||
|
|
||||||
|
.Test { |
||||||
|
position: fixed; |
||||||
|
left: 0; |
||||||
|
right: 0; |
||||||
|
bottom: 0; |
||||||
|
top: 0; |
||||||
|
overflow: auto; |
||||||
|
color: white; |
||||||
|
font-size: 1.4rem; |
||||||
|
|
||||||
|
.content { |
||||||
|
padding-top: 6rem; |
||||||
|
} |
||||||
|
} |
||||||
|
</style> |
Loading…
Reference in new issue