diff --git a/src/pages/subscribe.vue b/src/pages/subscribe.vue index 13c83e2f..cadf52e7 100644 --- a/src/pages/subscribe.vue +++ b/src/pages/subscribe.vue @@ -58,7 +58,7 @@ const searchShares = () => { // 筛选选项 const filterOptions = computed(() => { const baseOptions = [ - { value: 'all', label: t('common.all'), icon: 'mdi-format-list-bulleted' }, + { value: 'all', label: t('common.all'), icon: 'mdi-filter-multiple-outline' }, { value: 'best_version', label: t('subscribe.bestVersion'), icon: 'mdi-refresh', color: 'warning' }, ] diff --git a/src/views/plugin/PluginCardListView.vue b/src/views/plugin/PluginCardListView.vue index 977d06a7..8d05f9eb 100644 --- a/src/views/plugin/PluginCardListView.vue +++ b/src/views/plugin/PluginCardListView.vue @@ -113,7 +113,7 @@ registerHeaderTab({ const pluginId = ref(route.query.id) // 当前排序字段 -const activeSort = ref(null) +const activeSort = ref(null) // 插件顺序配置 const orderConfig = ref<{ id: string; type?: string; order?: number }[]>([]) @@ -1363,9 +1363,8 @@ function onDragStartPlugin(evt: any) { :close-on-content-click="false" :activator="'[data-menu-activator=market-filter-btn]'" location="bottom end" - max-height="80vh" > - +
- + {{ t('plugin.sortTitle') }} - - - - - - + + +
+ + + +
diff --git a/src/views/site/SiteCardListView.vue b/src/views/site/SiteCardListView.vue index f19227b3..293ef8a8 100644 --- a/src/views/site/SiteCardListView.vue +++ b/src/views/site/SiteCardListView.vue @@ -57,7 +57,7 @@ const filterOption = ref('all') // all, active, inactive, connected, slow, faile // 筛选选项 const filterOptions = computed(() => [ - { value: 'all', label: t('common.all'), icon: 'mdi-format-list-bulleted' }, + { value: 'all', label: t('common.all'), icon: 'mdi-filter-multiple-outline' }, { value: 'active', label: t('common.active'), icon: 'mdi-check-circle', color: 'success' }, { value: 'inactive', label: t('common.inactive'), icon: 'mdi-stop-circle', color: 'error' }, { value: 'connected', label: t('site.connectionNormal'), icon: 'mdi-wifi', color: 'success' },