Vue 로그인 경로 admin 추가

This commit is contained in:
이진기
2024-11-19 15:51:49 +09:00
parent aef25bc3dc
commit aed1321d88
6 changed files with 5 additions and 42 deletions

View File

@@ -1,12 +1,12 @@
import type { LoginReqType, LoginResType } from '~/types/login';
import type { LoginRequestType, LoginResponseType } from '~/types/login';
export const DEFAULT_AUTHENTICATION_VALUE: LoginReqType = {
export const DEFAULT_AUTHENTICATION_VALUE: LoginRequestType = {
memberId: '',
password: '',
remember: false
};
export const DEFAULT_AUTHORIZATION_VALUE: LoginResType = {
export const DEFAULT_AUTHORIZATION_VALUE: LoginResponseType = {
memberName: '',
deptNm: '',
instNm: '',