Files
CNCEC_APP/api/moduleApi/user.js
T
2026-08-17 11:01:21 +08:00

10 lines
173 B
JavaScript

import { post } from '@/utils';
// 登录
export function getLogin(data) {
return post('/User/postSupervisionLoginOn', data, {
showError: true,
isUnitId: false
});
}