From 7e576ac9512514444413da54bda10c975c82138e Mon Sep 17 00:00:00 2001 From: "97694732@qq.com" Date: Thu, 4 Jun 2026 13:25:26 +0800 Subject: [PATCH] =?UTF-8?q?ISBN=E9=A1=B5:=E5=88=87=E6=8D=A2=E5=93=81?= =?UTF-8?q?=E7=9B=B8=E8=87=AA=E5=8A=A8=E9=87=8D=E6=96=B0=E6=90=9C=E7=B4=A2?= =?UTF-8?q?=E5=9C=A8=E5=94=AE=E5=95=86=E5=93=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/upload/upload.vue | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/pages/upload/upload.vue b/pages/upload/upload.vue index 4482e61..abb9461 100644 --- a/pages/upload/upload.vue +++ b/pages/upload/upload.vue @@ -1081,10 +1081,16 @@ export default { watch: { noIsbnSelectedCondition() { - // 品相变化时重新搜索在售商品 + // 品相变化时重新搜索在售商品(无ISBN页) if (this.noIsbnProductList.length > 0 && this.noIsbnBookName && this.isLoggedIn) { this.searchNoIsbn() } + }, + selectedCondition() { + // 品相变化时重新搜索在售商品(ISBN页) + if (this.productList.length > 0 && this.isbn && this.isLoggedIn) { + this.searchISBN() + } } },