로그인 백엔드 구현 및 로그인 프론트 기능 구현

This commit is contained in:
이진기
2024-11-15 14:46:38 +09:00
parent 001bba7cb1
commit fcfbd1fd96
17 changed files with 473 additions and 386 deletions

View File

@@ -0,0 +1,16 @@
import type { LoginReqType, LoginResType } from '~/types/login';
export const DEFAULT_AUTHENTICATION_VALUE: LoginReqType = {
memberId: '',
password: '',
remember: false
};
export const DEFAULT_AUTHORIZATION_VALUE: LoginResType = {
memberName: '',
deptNm: '',
instNm: '',
menuList: [],
permitApiList: [],
authenticated: false
};