diff --git a/src/views/category/fileNoFormat/index.vue b/src/views/category/fileNoFormat/index.vue index 3f5e3c2..98811cd 100644 --- a/src/views/category/fileNoFormat/index.vue +++ b/src/views/category/fileNoFormat/index.vue @@ -109,7 +109,7 @@ export default { FetchArchivesTypeManage({ categoryId: this.selectedCategory.id, isType: 2 }).then((res) => { this.table.left.data.splice(0, this.table.left.data.length) res.forEach((item) => { - if (!item.isDisplayformat) { + if (!item.isDisplayformat && item.isInput && !item.isAutomatic) { this.table.left.data.push(item) } }) diff --git a/src/views/components/category/SettingForm.vue b/src/views/components/category/SettingForm.vue index 6c054de..92aad1e 100644 --- a/src/views/components/category/SettingForm.vue +++ b/src/views/components/category/SettingForm.vue @@ -84,6 +84,8 @@