This commit is contained in:
2025-06-26 20:25:32 +08:00
parent e18168ea73
commit cfff1b4062
5 changed files with 45 additions and 2 deletions

View File

@@ -411,6 +411,13 @@ const system = {
data: data
});
},
passLogin: async (id) => {
return request({
method: MethodsENUM.POST,
url: "/login/passLogin",
data: {id}
});
},
}
export default system;