This commit is contained in:
jxxghp
2023-09-29 08:55:33 +08:00
parent cba0e739eb
commit ccee71e638
3 changed files with 5 additions and 1 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "moviepilot",
"version": "1.2.7-1",
"version": "1.2.7-2",
"private": true,
"scripts": {
"dev": "vite --host",

View File

@@ -622,6 +622,7 @@ onMounted(() => {
</IconBtn>
</template>
<VCard :title="`文件整理 - ${currentItem?.name}`">
<DialogCloseBtn @click="transferPopper = false" />
<VCardText class="pt-2">
<VForm @submit.prevent="() => {}">
<VRow>
@@ -669,6 +670,7 @@ onMounted(() => {
>
<VTextField
v-model="transferForm.tmdbid"
:disabled="transferForm.type_name === ''"
label="TMDBID"
placeholder="留空自动识别"
:rules="[numberValidator]"

View File

@@ -227,6 +227,7 @@ async function retransferBatch() {
currentHistory.value = undefined
// 打开识别弹窗
redoType.value = ''
redoTmdbId.value = ''
redoDialog.value = true
}
@@ -461,6 +462,7 @@ const dropdownItems = ref([
v-model="redoTmdbId"
label="TMDB编号"
placeholder="留空自动识别"
:disabled="redoType === ''"
:rules="[numberValidator]"
append-inner-icon="mdi-magnify"
@click:append-inner.stop="tmdbSelectorDialog = true"