Refactor code structure for improved readability and maintainability

This commit is contained in:
2026-03-07 18:21:05 +07:00
parent 1af948aa35
commit a8fab3e765
4 changed files with 1317 additions and 1094 deletions

View File

@@ -42,3 +42,10 @@ export function delImLiveActivity(id) {
method: 'delete'
})
}
export function endImLiveActivity(id) {
return request({
url: '/service/imLiveActivity/end/' + id,
method: 'post'
})
}