From 04129529bcb8522beb2b7d2b9ed056318d24225d Mon Sep 17 00:00:00 2001 From: guaishoudemao <598705433@qq.com> Date: Thu, 24 Aug 2023 09:16:09 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BC=98=E5=93=81=E6=8E=A8=E8=8D=90?= =?UTF-8?q?=E8=AF=B7=E6=B1=82=E4=B8=8D=E7=99=BB=E5=BD=95=E5=8F=AF=E4=BB=A5?= =?UTF-8?q?=E8=AE=BF=E9=97=AE=E4=BF=AE=E6=94=B9=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/api/store.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/api/store.js b/app/api/store.js index 0be14a76..a7750656 100644 --- a/app/api/store.js +++ b/app/api/store.js @@ -175,7 +175,7 @@ export function storeListApi(data) { * @param object data */ export function getProductGood() { - return request.get('product/good'); + return request.get('product/good',{},{ noAuth : true}); } /** @@ -185,7 +185,7 @@ export function getProductGood() { * */ export function getReplyProduct(id) { - return request.get('reply/product/' + id, { + return request.get('reply/product/' + id, {},{ noAuth: true }) } \ No newline at end of file