diff --git a/pages/upload/upload.vue b/pages/upload/upload.vue index 142d499..9f1b530 100644 --- a/pages/upload/upload.vue +++ b/pages/upload/upload.vue @@ -3498,8 +3498,11 @@ export default { selectNoIsbnAuthor(item) { this.noIsbnAuthor = typeof item === 'string' ? item : (item.showName || '') this.noIsbnAuthorDropdownVisible = false - // 选择作者后:一次获取出版社/分类/作者(全部) + 重搜在售商品 + // 选择作者后:展开出版社,一次获取出版社/分类/作者(全部) + 重搜在售商品 this.fetchNoIsbnBookData() + this.$nextTick(function() { + this.noIsbnPublisherDropdownVisible = true + }.bind(this)) this.debouncedReSearch() }, @@ -3508,8 +3511,11 @@ export default { this.noIsbnPublisher = typeof item === 'string' ? item : (item.showName || '') this.noIsbnSelectedPublisherValue = typeof item === 'object' && item.value ? item.value : '' this.noIsbnPublisherDropdownVisible = false - // 选择出版社后:一次获取出版社/分类/作者(全部) + 重搜在售商品 + // 选择出版社后:展开作者,一次获取出版社/分类/作者(全部) + 重搜在售商品 this.fetchNoIsbnBookData() + this.$nextTick(function() { + this.noIsbnAuthorDropdownVisible = true + }.bind(this)) this.debouncedReSearch() },