1轮修复

This commit is contained in:
2026-01-20 16:17:39 +08:00
parent 0bf7361672
commit 8ab6107f25
23 changed files with 2587 additions and 612 deletions

View File

@@ -21,5 +21,16 @@ export const guestAPI = {
url: `/urban-lifeline/system/guest/wechat/${wechatId}`,
method: 'GET'
})
},
/**
* 获取可选人员列表
*/
listGuest(filter?: TbGuestDTO): Promise<ResultDomain<TbGuestDTO>> {
return request<TbGuestDTO>({
url: '/urban-lifeline/system/guest/list',
method: 'POST',
data: filter||{}
})
}
}