fix bugs & add batchdelete peer & add peer to ab

This commit is contained in:
ljw
2024-09-29 11:50:23 +08:00
parent 8be855ff3e
commit 777510c7ec
14 changed files with 427 additions and 65 deletions
+2 -2
View File
@@ -37,9 +37,9 @@ export function remove (data) {
})
}
export function changePwd (data) {
export function batchCreate (data) {
return request({
url: '/address_book/changePwd',
url: '/address_book/batchCreate',
method: 'post',
data,
})
+8
View File
@@ -36,3 +36,11 @@ export function remove (data) {
data,
})
}
export function batchRemove (data) {
return request({
url: '/peer/batchDelete',
method: 'post',
data,
})
}