补充租户ID

This commit is contained in:
zhonghua.li
2026-04-24 21:09:34 +08:00
parent 996ff4b491
commit b0d1898329
3 changed files with 20 additions and 5 deletions

View File

@@ -38,10 +38,13 @@ export function deleteQweiUser(id) {
})
}
export function syncQweiUser() {
export function syncQweiUser(tenantId) {
return request({
url: '/qweiUser/sync',
method: 'post'
method: 'post',
params: {
tenantId: tenantId || undefined
}
})
}