Compare commits

..

3 Commits

Author SHA1 Message Date
jxxghp
256e8d0452 为 ForkSubscribeDialog 组件的 VDialog 添加 scrollable 属性 2025-01-21 08:28:59 +08:00
jxxghp
4112214c1f 添加豆瓣用户字段并更新账号绑定标题 2025-01-20 18:25:28 +08:00
jxxghp
c183158ffe 更新 package.json 2025-01-20 13:25:49 +08:00
4 changed files with 15 additions and 4 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "moviepilot",
"version": "2.2.2",
"version": "2.2.3",
"private": true,
"bin": "dist/service.js",
"scripts": {

View File

@@ -99,7 +99,7 @@ async function doDelete() {
}
</script>
<template>
<VDialog max-width="40rem">
<VDialog max-width="40rem" scrollable>
<VCard>
<DialogCloseBtn @click="emit('close')" />
<VCardText>

View File

@@ -362,7 +362,7 @@ onMounted(() => {
</VCol>
</VRow>
<VDivider class="my-10">
<span>消息账号绑定</span>
<span>账号绑定</span>
</VDivider>
<VRow>
<VCol cols="12" md="6">
@@ -395,6 +395,9 @@ onMounted(() => {
label="SynologyChat用户"
/>
</VCol>
<VCol cols="12" md="6">
<VTextField v-model="userForm.settings.douban_userid" density="comfortable" clearable label="豆瓣用户" />
</VCol>
</VRow>
</VForm>
</VCardText>

View File

@@ -334,7 +334,7 @@ watch(
</VRow>
<VDivider class="my-10">
<span>消息账号绑定</span>
<span>账号绑定</span>
</VDivider>
<VRow>
@@ -378,6 +378,14 @@ watch(
label="SynologyChat用户"
/>
</VCol>
<VCol cols="12" md="6">
<VTextField
v-model="accountInfo.settings.douban_userid"
density="comfortable"
clearable
label="豆瓣用户"
/>
</VCol>
</VRow>
<VRow>
<!-- 👉 Form Actions -->