toast 메시지 추가
alert 글로벌화 loading 글로벌화
This commit is contained in:
@@ -24,11 +24,39 @@ export const caliumRequestInitData = {
|
||||
content: '',
|
||||
}
|
||||
|
||||
export const ORDER_OPTIONS = {
|
||||
asc: [
|
||||
{ value: 'ASC', label: '오름차순' },
|
||||
{ value: 'DESC', label: '내림차순' }
|
||||
],
|
||||
desc: [
|
||||
{ value: 'DESC', label: '내림차순' },
|
||||
{ value: 'ASC', label: '오름차순' }
|
||||
],
|
||||
};
|
||||
|
||||
export const PAGE_SIZE_OPTIONS = {
|
||||
default: [
|
||||
{ value: '50', label: '50개' },
|
||||
{ value: '100', label: '100개' }
|
||||
],
|
||||
B: [
|
||||
{ value: '500', label: '500개' },
|
||||
{ value: '1000', label: '1000개' },
|
||||
{ value: '5000', label: '5000개' },
|
||||
{ value: '10000', label: '10000개' }
|
||||
],
|
||||
};
|
||||
|
||||
export const STATUS_STYLES = {
|
||||
COMPLETE: {
|
||||
background: '#58AB62',
|
||||
color: 'white'
|
||||
},
|
||||
EXPIRATION: {
|
||||
background: '#58AB62',
|
||||
color: 'white'
|
||||
},
|
||||
WAIT: {
|
||||
background: '#DEBB46',
|
||||
color: 'black'
|
||||
@@ -57,6 +85,10 @@ export const STATUS_STYLES = {
|
||||
background: '#4287f5',
|
||||
color: 'white'
|
||||
},
|
||||
INPROGRESS: {
|
||||
background: '#4287f5',
|
||||
color: 'white'
|
||||
},
|
||||
AUCTION_END: {
|
||||
background: '#A37FB8',
|
||||
color: 'white'
|
||||
|
||||
Reference in New Issue
Block a user