From 034471733d538c7a656ce837e07f1770ff8f2b20 Mon Sep 17 00:00:00 2001 From: ShenQiLun <97694732@qq.com> Date: Thu, 2 Jul 2026 16:06:10 +0800 Subject: [PATCH] =?UTF-8?q?fix:=E9=80=89=E4=BD=9C=E8=80=85=E5=90=8E?= =?UTF-8?q?=E8=87=AA=E5=8A=A8=E5=B1=95=E5=BC=80=E5=87=BA=E7=89=88=E7=A4=BE?= =?UTF-8?q?,=E9=80=89=E5=87=BA=E7=89=88=E7=A4=BE=E5=90=8E=E8=87=AA?= =?UTF-8?q?=E5=8A=A8=E5=B1=95=E5=BC=80=E4=BD=9C=E8=80=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/upload/upload.vue | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) 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() },