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
+6 -5
View File
@@ -439,9 +439,11 @@ watch(
<FormRender v-for="(item, index) in pluginFormItems" :key="index" :config="item" :form="pluginConfigForm" /> <FormRender v-for="(item, index) in pluginFormItems" :key="index" :config="item" :form="pluginConfigForm" />
</VCardText> </VCardText>
<VCardActions> <VCardActions>
<VBtn v-if="pluginPageItems.length > 0" @click="showPluginInfo"> 查看数据 </VBtn> <VBtn v-if="pluginPageItems.length > 0" @click="showPluginInfo" variant="outlined" color="info">
查看数据
</VBtn>
<VSpacer /> <VSpacer />
<VBtn variant="tonal" @click="savePluginConf"> 保存 </VBtn> <VBtn @click="savePluginConf" variant="elevated" prepend-icon="mdi-content-save" class="px-5"> 保存 </VBtn>
</VCardActions> </VCardActions>
</VCard> </VCard>
</VDialog> </VDialog>
@@ -453,10 +455,9 @@ watch(
<VCardText> <VCardText>
<PageRender @action="loadPluginPage" v-for="(item, index) in pluginPageItems" :key="index" :config="item" /> <PageRender @action="loadPluginPage" v-for="(item, index) in pluginPageItems" :key="index" :config="item" />
</VCardText> </VCardText>
<VCardActions> <VCardActions class="pt-3">
<VBtn @click="showPluginConfig"> 配置 </VBtn>
<VSpacer /> <VSpacer />
<VBtn variant="tonal" @click="pluginInfoDialog = false"> 关闭 </VBtn> <VBtn @click="showPluginConfig" variant="elevated" prepend-icon="mdi-cog" class="px-5"> 配置 </VBtn>
</VCardActions> </VCardActions>
</VCard> </VCard>
</VDialog> </VDialog>
+1 -1
View File
@@ -163,7 +163,7 @@ onMounted(() => {
</script> </script>
<template> <template>
<VDialog scrollable max-width="60rem" :fullscreen="!display.mdAndUp.value"> <VDialog scrollable max-width="50rem" :fullscreen="!display.mdAndUp.value">
<VCard <VCard
:title="`${props.path ? `整理 - ${props.path}` : `整理 - 共 ${props.logids?.length} 条记录`}`" :title="`${props.path ? `整理 - ${props.path}` : `整理 - 共 ${props.logids?.length} 条记录`}`"
class="rounded-t" class="rounded-t"
+1 -1
View File
@@ -127,7 +127,7 @@ async function updateSiteInfo() {
</script> </script>
<template> <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 <VCard
:title="`${props.oper === 'add' ? '新增' : '编辑'}站点${props.oper !== 'add' ? ` - ${siteForm.name}` : ''}`" :title="`${props.oper === 'add' ? '新增' : '编辑'}站点${props.oper !== 'add' ? ` - ${siteForm.name}` : ''}`"
class="rounded-t" class="rounded-t"
@@ -260,7 +260,7 @@ onMounted(() => {
</script> </script>
<template> <template>
<VDialog scrollable max-width="60rem" :fullscreen="!display.mdAndUp.value"> <VDialog scrollable max-width="50rem" :fullscreen="!display.mdAndUp.value">
<VCard <VCard
:title="`${ :title="`${
props.default props.default
@@ -286,7 +286,7 @@ onMounted(() => {
v-model="subscribeForm.total_episode" v-model="subscribeForm.total_episode"
label="总集数" label="总集数"
:rules="[numberValidator]" :rules="[numberValidator]"
hint="设定剧集的总集数,以应对themoviedb中剧集信息未维护完整,导致提前结束订阅的情况" hint="手动设定总集数"
/> />
</VCol> </VCol>
<VCol v-if="subscribeForm.type === '电视剧'" cols="12" md="2"> <VCol v-if="subscribeForm.type === '电视剧'" cols="12" md="2">
@@ -294,7 +294,7 @@ onMounted(() => {
v-model="subscribeForm.start_episode" v-model="subscribeForm.start_episode"
label="开始集数" label="开始集数"
:rules="[numberValidator]" :rules="[numberValidator]"
hint="只订阅下载此集数及之后的集" hint="只下载此集数及之后的集"
/> />
</VCol> </VCol>
</VRow> </VRow>