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