完成积分锁客模块

This commit is contained in:
gyq
2025-12-12 10:32:42 +08:00
parent 214026e859
commit f954bbd145
8 changed files with 399 additions and 21 deletions

View File

@@ -118,4 +118,28 @@ export function goodsRecordRejectRefund(data) {
method: "post",
data
})
}
/**
* 积分:获取用户所有门店下积分列表
* @param {Object} data
*/
export function pointUserPage(data) {
return request({
url: `${MARKET_URL}/admin/points/userPage`,
method: "GET",
data
})
}
/**
* 积分:积分详情
* @param {Object} data
*/
export function pointUserRecord(data) {
return request({
url: `${MARKET_URL}/admin/points/userRecord`,
method: "GET",
data
})
}