Files
cpms_operation_platform/src/api/login/index.ts
T

6 lines
152 B
TypeScript
Raw Normal View History

2026-08-03 19:12:33 +08:00
import { post } from '@/utils/request';
export const login = (params: { phone: string; password: string }) => {
return post(`/op/login`, params);
};