Update button styles in PluginCard.vue, ReorganizeDialog.vue, SiteAddEditDialog.vue, and SubscribeEditDialog.vue

This commit is contained in:
jxxghp
2024-05-06 18:26:52 +08:00
parent aa146b1cdf
commit 2dc792690e
4 changed files with 11 additions and 10 deletions

View File

@@ -439,9 +439,11 @@ watch(
<FormRender v-for="(item, index) in pluginFormItems" :key="index" :config="item" :form="pluginConfigForm" />
</VCardText>
<VCardActions>
<VBtn v-if="pluginPageItems.length > 0" @click="showPluginInfo"> 查看数据 </VBtn>
<VBtn v-if="pluginPageItems.length > 0" @click="showPluginInfo" variant="outlined" color="info">
查看数据
</VBtn>
<VSpacer />
<VBtn variant="tonal" @click="savePluginConf"> 保存 </VBtn>
<VBtn @click="savePluginConf" variant="elevated" prepend-icon="mdi-content-save" class="px-5"> 保存 </VBtn>
</VCardActions>
</VCard>
</VDialog>
@@ -453,10 +455,9 @@ watch(
<VCardText>
<PageRender @action="loadPluginPage" v-for="(item, index) in pluginPageItems" :key="index" :config="item" />
</VCardText>
<VCardActions>
<VBtn @click="showPluginConfig"> 配置 </VBtn>
<VCardActions class="pt-3">
<VSpacer />
<VBtn variant="tonal" @click="pluginInfoDialog = false"> 关闭 </VBtn>
<VBtn @click="showPluginConfig" variant="elevated" prepend-icon="mdi-cog" class="px-5"> 配置 </VBtn>
</VCardActions>
</VCard>
</VDialog>

View File

@@ -163,7 +163,7 @@ onMounted(() => {
</script>
<template>
<VDialog scrollable max-width="60rem" :fullscreen="!display.mdAndUp.value">
<VDialog scrollable max-width="50rem" :fullscreen="!display.mdAndUp.value">
<VCard
:title="`${props.path ? `整理 - ${props.path}` : `整理 - 共 ${props.logids?.length} 条记录`}`"
class="rounded-t"

View File

@@ -127,7 +127,7 @@ async function updateSiteInfo() {
</script>
<template>
<VDialog scrollable :close-on-back="false" persistent eager max-width="60rem" :fullscreen="!display.mdAndUp.value">
<VDialog scrollable :close-on-back="false" persistent eager max-width="50rem" :fullscreen="!display.mdAndUp.value">
<VCard
:title="`${props.oper === 'add' ? '新增' : '编辑'}站点${props.oper !== 'add' ? ` - ${siteForm.name}` : ''}`"
class="rounded-t"

View File

@@ -260,7 +260,7 @@ onMounted(() => {
</script>
<template>
<VDialog scrollable max-width="60rem" :fullscreen="!display.mdAndUp.value">
<VDialog scrollable max-width="50rem" :fullscreen="!display.mdAndUp.value">
<VCard
:title="`${
props.default
@@ -286,7 +286,7 @@ onMounted(() => {
v-model="subscribeForm.total_episode"
label="总集数"
:rules="[numberValidator]"
hint="设定剧集的总集数以应对themoviedb中剧集信息未维护完整导致提前结束订阅的情况"
hint="手动设定总集数"
/>
</VCol>
<VCol v-if="subscribeForm.type === '电视剧'" cols="12" md="2">
@@ -294,7 +294,7 @@ onMounted(() => {
v-model="subscribeForm.start_episode"
label="开始集数"
:rules="[numberValidator]"
hint="只订阅下载此集数及之后的集"
hint="只下载此集数及之后的集"
/>
</VCol>
</VRow>