mirror of
https://github.com/jxxghp/MoviePilot-Frontend.git
synced 2026-09-05 07:28:37 +08:00
Merge branch 'main' into develop-20240517-页面优化
This commit is contained in:
@@ -2,6 +2,7 @@
|
|||||||
"name": "MoviePilot",
|
"name": "MoviePilot",
|
||||||
"short_name": "MoviePilot",
|
"short_name": "MoviePilot",
|
||||||
"start_url": "./",
|
"start_url": "./",
|
||||||
|
"display": "minimal-ui",
|
||||||
"icons": [
|
"icons": [
|
||||||
{
|
{
|
||||||
"src": "./android-chrome-192x192.png",
|
"src": "./android-chrome-192x192.png",
|
||||||
@@ -30,7 +31,6 @@
|
|||||||
],
|
],
|
||||||
"theme_color": "#28243D",
|
"theme_color": "#28243D",
|
||||||
"background_color": "#28243D",
|
"background_color": "#28243D",
|
||||||
"display": "standalone",
|
|
||||||
"shortcuts": [
|
"shortcuts": [
|
||||||
{
|
{
|
||||||
"name": "推荐",
|
"name": "推荐",
|
||||||
@@ -77,4 +77,4 @@
|
|||||||
]
|
]
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -48,7 +48,7 @@ onUnmounted(() => {
|
|||||||
<VIcon class="cursor-move" v-if="hover.isHovering">mdi-drag</VIcon>
|
<VIcon class="cursor-move" v-if="hover.isHovering">mdi-drag</VIcon>
|
||||||
</template>
|
</template>
|
||||||
<VCardTitle>
|
<VCardTitle>
|
||||||
{{ props.config?.name }}
|
{{ props.config?.attrs?.title ?? props.config?.name }}
|
||||||
</VCardTitle>
|
</VCardTitle>
|
||||||
<VCardSubtitle v-if="props.config?.attrs?.subtitle"> {{ props.config?.attrs?.subtitle }}</VCardSubtitle>
|
<VCardSubtitle v-if="props.config?.attrs?.subtitle"> {{ props.config?.attrs?.subtitle }}</VCardSubtitle>
|
||||||
</VCardItem>
|
</VCardItem>
|
||||||
|
|||||||
@@ -264,7 +264,7 @@ onBeforeMount(async () => {
|
|||||||
<VCardText>
|
<VCardText>
|
||||||
<VRow>
|
<VRow>
|
||||||
<VCol v-for="item in dashboardConfigs" :key="item.id" cols="6" md="4" sm="4">
|
<VCol v-for="item in dashboardConfigs" :key="item.id" cols="6" md="4" sm="4">
|
||||||
<VCheckbox v-model="enableConfig[item.id]" :label="item.name" />
|
<VCheckbox v-model="enableConfig[item.id]" :label="item.attrs?.title ?? item.name" />
|
||||||
</VCol>
|
</VCol>
|
||||||
</VRow>
|
</VRow>
|
||||||
</VCardText>
|
</VCardText>
|
||||||
|
|||||||
Reference in New Issue
Block a user