From 818aec0c3ef826b6a06a8eadc5219b133a3cb8ba Mon Sep 17 00:00:00 2001 From: thsrite Date: Fri, 29 Mar 2024 10:02:20 +0800 Subject: [PATCH] fix --- plugins/subscribestatistic/__init__.py | 49 +++++++++++++------------- 1 file changed, 25 insertions(+), 24 deletions(-) diff --git a/plugins/subscribestatistic/__init__.py b/plugins/subscribestatistic/__init__.py index 30900b3..005a4fa 100644 --- a/plugins/subscribestatistic/__init__.py +++ b/plugins/subscribestatistic/__init__.py @@ -413,30 +413,6 @@ class SubscribeStatistic(_PluginBase): } ] }, - { - 'component': 'VCol', - 'props': { - 'cols': 12, - 'md': 4 - }, - 'content': [ - { - 'component': 'VSelect', - 'props': { - 'multiple': True, - 'chips': True, - 'model': 'notify_type', - 'label': '推送类型', - 'items': [ - {'title': '电影订阅', 'value': 'movie_subscribes'}, - {'title': '电视剧订阅', 'value': 'tv_subscribes'}, - {'title': '电影下载', 'value': 'movie_downloads'}, - {'title': '电视剧下载', 'value': 'tv_downloads'}, - ] - } - } - ] - }, { 'component': 'VRow', 'content': [ @@ -461,6 +437,31 @@ class SubscribeStatistic(_PluginBase): } ] }, + { + 'component': 'VCol', + 'props': { + 'cols': 12, + 'md': 4 + }, + 'content': [ + { + 'component': 'VSelect', + 'props': { + 'multiple': True, + 'chips': True, + 'model': 'notify_type', + 'label': '推送类型', + 'items': [ + {'title': '电影订阅', 'value': 'movie_subscribes'}, + {'title': '电视剧订阅', 'value': 'tv_subscribes'}, + {'title': '电影下载', 'value': 'movie_downloads'}, + {'title': '电视剧下载', 'value': 'tv_downloads'}, + ] + } + } + ] + }, + ] }, {