feat: 接口联调

This commit is contained in:
2026-08-03 19:12:33 +08:00
parent 3e94ce60ec
commit 2497e6aabb
29 changed files with 941 additions and 1283 deletions
+5
View File
@@ -0,0 +1,5 @@
import { post } from '@/utils/request';
export const login = (params: { phone: string; password: string }) => {
return post(`/op/login`, params);
};