fix: 优品推荐请求不登录可以访问修改。

This commit is contained in:
guaishoudemao
2023-08-24 09:16:09 +08:00
parent de1f7d8fec
commit 34da63c3df

View File

@@ -175,7 +175,7 @@ export function storeListApi(data) {
* @param object data * @param object data
*/ */
export function getProductGood() { 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) { export function getReplyProduct(id) {
return request.get('reply/product/' + id, { return request.get('reply/product/' + id, {},{
noAuth: true noAuth: true
}) })
} }