mirror of
https://github.com/jxxghp/MoviePilot-Frontend.git
synced 2026-09-07 16:56:40 +08:00
更新浏览和发现页面,重构相关组件,调整路由和菜单项
This commit is contained in:
@@ -1,6 +1,18 @@
|
||||
<script setup lang="ts">
|
||||
import MediaCardListView from '@/views/discover/MediaCardListView.vue'
|
||||
|
||||
// 电影或者电视剧 movies/tvs
|
||||
const type = ref('movies')
|
||||
|
||||
// 过滤参数
|
||||
const filterParams = ref({
|
||||
'sort': 'R',
|
||||
'tags': '',
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
|
||||
<div>
|
||||
<MediaCardListView :apipath="`douban/${type}`" :params="filterParams" />
|
||||
</div>
|
||||
</template>
|
||||
|
||||
Reference in New Issue
Block a user