初始化

This commit is contained in:
2025-07-28 15:52:07 +08:00
commit cd0e77b332
1304 changed files with 302802 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
import request from '@/utils/request'
// 远程搜索审核人员
export function remoteApprover(query) {
return request({
url: `/system/user/list?nickName=${query.nickName}`,
method: "GET"
})
}