红包逻辑需要重构

This commit is contained in:
cbb
2026-01-16 17:57:43 +08:00
parent 5f9629f198
commit f0aee6ba14
16 changed files with 335 additions and 45 deletions

View File

@@ -26,11 +26,12 @@ export const getProductDetail = productId => {
}
/** 商品评价列表 */
export const getProductCommentList = data => {
export const getProductCommentList = (data, loading = true) => {
return http({
url: '/api/service/productReview/list',
method: 'get',
data
data,
loading
})
}