代码优化

This commit is contained in:
GaoHao
2025-01-07 09:54:54 +08:00
parent 4ccddee396
commit 5b19340974
10 changed files with 882 additions and 885 deletions

11
api/user/user.js Normal file
View File

@@ -0,0 +1,11 @@
import http from '@/http/http.js'
/**
* 获取用户信息
*/
export const selectUserById = (data) => {
return http.request({
url: '/user/selectUserById',
data: data
})
}