-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #69 from Weflo-A/develop
[Feat]: 부품 배포
- Loading branch information
Showing
35 changed files
with
1,910 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
export const periodData = [ | ||
{ | ||
id: 0, | ||
period: '1주', | ||
}, | ||
{ | ||
id: 0, | ||
period: '1주 ~ 2주', | ||
}, | ||
{ | ||
id: 0, | ||
period: '2주 ~ 1개월', | ||
}, | ||
{ | ||
id: 0, | ||
period: '1개월 ~ 3개월', | ||
}, | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
export interface Product { | ||
id: number; | ||
store: string; | ||
name: string; | ||
price: number; | ||
rank: number; | ||
image: string; | ||
category: Category; | ||
} | ||
|
||
export type Category = 'all' | 'blade' | 'motor' | 'esc' | 'other'; | ||
|
||
export const productData: Product[] = [ | ||
{ | ||
id: 1, | ||
store: 'A 스토어', | ||
name: '4pcs / 2pairs Gemfan 51499 허리케인 블레이드 프로펠러', | ||
price: 135000, | ||
rank: 4.1, | ||
image: '', | ||
category: 'blade', | ||
}, | ||
{ | ||
id: 2, | ||
store: 'B 스토어', | ||
name: '어쩌고 블레이드 프로펠러', | ||
price: 135000, | ||
rank: 4.1, | ||
image: '', | ||
category: 'motor', | ||
}, | ||
{ | ||
id: 3, | ||
store: 'B 스토어', | ||
name: '뭐시기 블레이드 프로펠러', | ||
price: 135000, | ||
rank: 4.1, | ||
image: '', | ||
category: 'blade', | ||
}, | ||
{ | ||
id: 4, | ||
store: 'C 스토어', | ||
name: '어쩌고 블레이드 프로펠러 어쩌고', | ||
price: 135000, | ||
rank: 4.1, | ||
image: '', | ||
category: 'esc', | ||
}, | ||
{ | ||
id: 5, | ||
store: 'D 스토어', | ||
name: '뭐시기 블레이드 프로펠러 뭐시기', | ||
price: 135000, | ||
rank: 4.1, | ||
image: '', | ||
category: 'blade', | ||
}, | ||
]; |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.