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

This commit is contained in:
guaishoudemao
2023-08-24 09:16:09 +08:00
parent 44dedf3e89
commit 04129529bc

View File

@@ -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
})
}