/admin/content/list 프론트 기능 추가
This commit is contained in:
20
nuxt/constants/grid/index.ts
Normal file
20
nuxt/constants/grid/index.ts
Normal 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' }
|
||||
];
|
||||
Reference in New Issue
Block a user