diff --git a/src/api/activity/msg.js b/src/api/activity/msg.js index 36f4f83..20bbc58 100644 --- a/src/api/activity/msg.js +++ b/src/api/activity/msg.js @@ -45,3 +45,30 @@ export function msgUpdate (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 || {} + }) +} \ No newline at end of file