mirror of
https://github.com/jxxghp/MoviePilot-Frontend.git
synced 2026-07-27 00:38:13 +08:00
优化 Footer 组件中的动态按钮样式,调整按钮属性设置,更新图标颜色以提升视觉效果和用户体验。
This commit is contained in:
@@ -353,7 +353,7 @@ async function refreshData() {
|
||||
}
|
||||
|
||||
// 对uninstalledList进行排序到sortedUninstalledList
|
||||
watch([marketList, filterForm], () => {
|
||||
watch([marketList, filterForm, activeSort], () => {
|
||||
// 匹配过滤函数
|
||||
const match = (filter: Array<string>, value: string | undefined) =>
|
||||
filter.length === 0 || (value && filter.includes(value))
|
||||
@@ -577,7 +577,7 @@ useDynamicButton({
|
||||
clearable
|
||||
/>
|
||||
</VCol>
|
||||
<VCol v-if="repoFilterOptions.length > 0" cols="12" md="6">
|
||||
<VCol v-if="sortOptions.length > 0" cols="12" md="6">
|
||||
<VSelect v-model="activeSort" :items="sortOptions" density="comfortable" label="排序" />
|
||||
</VCol>
|
||||
</VRow>
|
||||
|
||||
Reference in New Issue
Block a user