/admin/content/list 프론트 기능 추가

This commit is contained in:
이진기
2024-11-26 14:46:19 +09:00
parent 505a3e5101
commit dae8e6d3a7
10 changed files with 644 additions and 9 deletions

View File

@@ -0,0 +1,20 @@
export const BOOLEANS = [
{ text: '사용', value: 'true' },
{ text: '미사용', value: 'false' }
];
export const YES_OR_NO_CODE_LIST = [
{ text: '예', value: 'true' },
{ text: '아니오', value: 'false' }
];
export const LOCK_CODE_LIST = [
{ text: '정상', value: 'false' },
{ text: '잠김', value: 'true' }
];
export const ADMIN_STATUS_CODE_LIST = [
{ text: '미승인', value: 'NONE' },
{ text: '승인', value: 'APRV' },
{ text: '반려', value: 'RJCT' }
];