This commit is contained in:
GaoHao
2025-01-07 10:54:59 +08:00
5 changed files with 59 additions and 4 deletions

23
pages/video/detail.nvue Normal file
View File

@@ -0,0 +1,23 @@
<template>
<view class="min-page">
<my-video-list></my-video-list>
</view>
</template>
<script setup>
import {onLoad,onShow} from '@dcloudio/uni-app'
onLoad((opt)=>{
})
onShow(()=>{
})
</script>
<style lang="scss" scoped>
.min-page{
height: 100vh;
background-color: #000;
overflow: hidden;
}
</style>

View File

@@ -1,11 +1,15 @@
<template>
<view>
<up-button @click="toDetail">toDetail</up-button>
</view>
</template>
<script setup>
function toDetail(){
uni.navigateTo({
url:'/pages/video/detail'
})
}
</script>
<style>