add batch create ab from peer

add batch update ab tags
This commit is contained in:
lejianwen
2024-12-06 19:46:58 +08:00
parent c571aaa3ab
commit f70764f4c6
10 changed files with 208 additions and 13 deletions
+16
View File
@@ -52,3 +52,19 @@ export function shareByWebClient (data) {
data,
})
}
export function batchCreateFromPeers (data) {
return request({
url: '/address_book/batchCreateFromPeers',
method: 'post',
data,
})
}
export function batchUpdateTags (data) {
return request({
url: '/address_book/batchUpdateTags',
method: 'post',
data,
})
}