From 01f0638a375d8417af8ae93125b228be8dee3da3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B5=B5=E5=BF=A0=E6=9E=97?= <170083662@qq.com> Date: Fri, 17 Jul 2026 11:24:06 +0800 Subject: [PATCH] =?UTF-8?q?fix(store):=20=E4=BF=AE=E5=A4=8D=E8=8E=B7?= =?UTF-8?q?=E5=8F=96=E5=BA=97=E5=91=98=E5=88=97=E8=A1=A8=E6=97=B6=E7=BC=BA?= =?UTF-8?q?=E5=B0=91=E5=BA=97=E9=93=BAID=E5=8F=82=E6=95=B0=E9=97=AE?= =?UTF-8?q?=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 移除调用 listShopStoreUser 时的 storeId 参数 - 解决因参数传递导致的加载店员失败问题 - 保持加载和错误提示逻辑不变 --- src/pages/store/orders/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/store/orders/index.tsx b/src/pages/store/orders/index.tsx index 8d5064d..9f5b134 100644 --- a/src/pages/store/orders/index.tsx +++ b/src/pages/store/orders/index.tsx @@ -462,7 +462,7 @@ export default function StoreOrdersPage() { setShowShipModal(true) setLoadingClerks(true) try { - const res = await listShopStoreUser({storeId: order.storeId}) + const res = await listShopStoreUser() setClerkList(res || []) } catch (e) { Taro.showToast({title: '加载店员失败', icon: 'none'})