新增事件菜单

This commit is contained in:
DESKTOP-6C3NK6N\WXS
2024-10-16 15:41:01 +08:00
parent 4c1ed950e5
commit 7beec24a7c
2 changed files with 240 additions and 0 deletions
+16
View File
@@ -293,3 +293,19 @@ export function batchUpdateInternationalInfo(data) {
data
})
}
// 邮件事件消息列表
export function getEventStoreRecordList(data) {
return request({
url: `/EventStoreRecord/getEventStoreRecordList`,
method: 'post',
data
})
}
// 重新发布事件消息
export function rePublishEvent(param) {
return request({
url: `/EventStoreRecord/rePublishEvent`,
method: 'post',
param
})
}