增加接口

This commit is contained in:
mac
2026-03-12 17:05:43 +08:00
parent 1aa035b52f
commit 9aaf71d41f
+27
View File
@@ -45,3 +45,30 @@ export function msgUpdate (data) {
data data
}) })
} }
// 获取红包列表明细
export function getRecordList(data) {
return request({
url: '/api/web/redpacket/record/list',
method: 'post',
data
})
}
// 更新红包列表明细
export function updateConfig(data) {
return request({
url: '/api/web/redpacket/config/update',
method: 'post',
data
})
}
// 更新红包列表明细
export function getConfig(data) {
return request({
url: '/api/web/redpacket/config/get',
method: 'get',
params: data || {}
})
}