1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- <template>
- <view class="list-content">
- <view class="list-item" v-for="item in videoList" :key="item.id">
- <view class="item-video">
- <video class="video-player" :controls="false" @play.prevent id="myVideo"
- src="@/static/videos/86e914d805fe8578f8258d21eeac7ddc.mp4"></video>
- </view>
- <view class="item-content" @click="jumpToPlayVideo(item)">
- <view>{{item.name}}</view>
- <view>{{item.date}}</view>
- <view :style="{color:item.status==0?'#DE868F':'#333'}">{{item.status==0?'视频生成中':'已生成'}}</view>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- videoList: [{
- id: 1,
- name: 'ceshi1',
- date: '2025-03-23',
- status: 0
- },
- {
- id: 2,
- name: 'ceshi2',
- date: '2025-03-23',
- status: 1
- },
- {
- id: 3,
- name: 'ceshi3',
- date: '2025-03-23',
- status: 2
- },
- {
- id: 4,
- name: 'ceshi4',
- date: '2025-03-23',
- status: 0
- },
- ]
- }
- },
- methods: {
- jumpToPlayVideo(item) {
- if(item.status==0){
- uni.navigateTo({
- url: 'creatingVideo/creatingVideo'
- });
- }else{
- uni.navigateTo({
- url: 'playVideo/playVideo'
- });
- }
- }
- }
- }
- </script>
- <style scoped lang="scss">
- .list-content {
- padding: 20px;
- .list-item {
- height: 100px;
- width: 100%;
- background-color: #fff;
- border-radius: 4px;
- margin-bottom: 20px;
- display: flex;
- .item-video {
- width: 150px;
- height: 100px;
- .video-player {
- width: 100%;
- height: 100px;
- }
- }
- .item-content {
- display: flex;
- flex-direction: column;
- justify-content: center;
- margin-left: 10px;
- color: #333;
- view {
- height: 30px;
- }
- }
- }
- }
- </style>
|