-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(docs): update private pricing on website (#4846)
- Loading branch information
Showing
10 changed files
with
526 additions
and
227 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,36 @@ | ||
export const PC_MIN_WIDTH = 1000; | ||
|
||
export const cpuPriceMonth = 6; | ||
|
||
export const memoryPriceMonth = 3; | ||
|
||
export const CpuSlideMarkList = [ | ||
{ label: 8, value: 8 }, | ||
{ label: 256, value: 256 }, | ||
{ label: 512, value: 512 }, | ||
{ label: 1024, value: 1024 }, | ||
{ label: 2048, value: 2048 } | ||
]; | ||
|
||
export const MemorySlideMarkList = [ | ||
{ label: 16, value: 16 }, | ||
{ label: 512, value: 512 }, | ||
{ label: 1024, value: 1024 }, | ||
{ label: 2048, value: 2048 }, | ||
{ label: 4096, value: 4096 } | ||
]; | ||
|
||
export const MonthMapList = [ | ||
// unit month | ||
{ label: '3个月', value: '3' }, | ||
{ label: '6个月', value: '6' }, | ||
{ label: '1年', value: '12' }, | ||
{ label: '2年', value: '24' }, | ||
{ label: '3年', value: '36' } | ||
]; | ||
|
||
export const freeValues = { | ||
cpu: 8, | ||
memory: 16, | ||
months: '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
Oops, something went wrong.