-
Notifications
You must be signed in to change notification settings - Fork 81
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
223 additions
and
6 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
export enum WolaiSortPresetEnum { | ||
/** 按自定义日期排序 */ | ||
dateDesc = 'dateDesc', | ||
dateAsc = 'dateAsc', | ||
/** 按创建时间排序 */ | ||
createTimeDesc = 'createTimeDesc', | ||
createTimeAsc = 'createTimeAsc', | ||
/** 按更新时间排序 */ | ||
updateTimeDesc = 'updateTimeDesc', | ||
updateTimeAsc = 'updateTimeAsc', | ||
/** 按sort字段排序 */ | ||
sortDesc = 'sortDesc', | ||
sortAsc = 'sortAsc', | ||
} | ||
|
||
export enum WolaiSortDirectionEnum { | ||
/** 降序 */ | ||
descending = 'descending', | ||
/** 升序 */ | ||
ascending = 'ascending', | ||
} |
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