From 95b99e24533f8e6fbef27873545a4101dc15013f Mon Sep 17 00:00:00 2001 From: ShenQiLun <97694732@qq.com> Date: Thu, 2 Jul 2026 16:32:59 +0800 Subject: [PATCH] =?UTF-8?q?fix:=E5=93=81=E7=9B=B8=E5=88=87=E6=8D=A2?= =?UTF-8?q?=E6=97=B6=E5=A7=8B=E7=BB=88=E8=AF=B7=E6=B1=82API,=E4=B8=8D?= =?UTF-8?q?=E4=BE=9D=E8=B5=96=E5=88=97=E8=A1=A8=E6=98=AF=E5=90=A6=E6=9C=89?= =?UTF-8?q?=E6=95=B0=E6=8D=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/upload/upload.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pages/upload/upload.vue b/pages/upload/upload.vue index ad6ecd7..4142aa4 100644 --- a/pages/upload/upload.vue +++ b/pages/upload/upload.vue @@ -1259,13 +1259,13 @@ export default { watch: { noIsbnSelectedCondition() { // 品相变化时重新搜索在售商品(无ISBN页) - if (this.noIsbnProductList.length > 0 && this.noIsbnBookName && this.isLoggedIn) { + if (this.noIsbnBookName && this.isLoggedIn) { this.searchNoIsbn() } }, selectedCondition() { // 品相变化时重新搜索在售商品(ISBN页) - if (this.productList.length > 0 && this.isbn && this.isLoggedIn) { + if (this.isbn && this.isLoggedIn) { this.searchISBN() } },