mirror of
https://github.com/jxxghp/MoviePilot-Frontend.git
synced 2026-05-31 05:10:45 +08:00
Merge pull request #239 from Aqr-K/v2-subscribe
This commit is contained in:
@@ -19,11 +19,11 @@ function jumpTab(tab: string) {
|
||||
<template>
|
||||
<div>
|
||||
<VTabs v-model="activeTab">
|
||||
<VTab v-for="item in SubscribeMovieTabs" :value="item.tab" @to="jumpTab(item.tab)">
|
||||
<VTab v-if="subType == '电影'" v-for="item in SubscribeMovieTabs" :value="item.tab" @to="jumpTab(item.tab)">
|
||||
<span class="mx-5">{{ item.title }}</span>
|
||||
</VTab>
|
||||
<VTab v-if="subType == '电视剧'" value="share" @to="jumpTab('share')">
|
||||
<span class="mx-5">订阅分享</span>
|
||||
<VTab v-if="subType == '电视剧'" v-for="item in SubscribeTvTabs" :value="item.tab" @to="jumpTab(item.tab)">
|
||||
<span class="mx-5">{{ item.title }}</span>
|
||||
</VTab>
|
||||
</VTabs>
|
||||
|
||||
|
||||
@@ -219,6 +219,11 @@ export const SubscribeTvTabs = [
|
||||
tab: 'popular',
|
||||
icon: 'mdi-television',
|
||||
},
|
||||
{
|
||||
title: '订阅分享',
|
||||
tab: 'share',
|
||||
icon: 'mdi-television',
|
||||
},
|
||||
]
|
||||
|
||||
// 插件标签页
|
||||
|
||||
Reference in New Issue
Block a user