Files
CNCEC_APP/api/moduleApi/user.js
T

10 lines
173 B
JavaScript
Raw Normal View History

2026-08-17 11:01:21 +08:00
import { post } from '@/utils';
// 登录
export function getLogin(data) {
return post('/User/postSupervisionLoginOn', data, {
showError: true,
isUnitId: false
});
}