add "sort by" drop down list in statistics page

This commit is contained in:
MaysWind
2022-07-25 00:25:14 +08:00
parent 0dfb3d00e9
commit 1977e436d6
8 changed files with 138 additions and 49 deletions
+13 -4
View File
@@ -45,12 +45,21 @@ const allChartDataTypes = {
const defaultChartDataType = allChartDataTypes.ExpenseByPrimaryCategory.type;
const allSortingTypes = {
ByAmount: 0,
ByDisplayOrder: 1,
ByName: 2
Amount: {
type: 0,
name: 'Amount'
},
DisplayOrder: {
type: 1,
name: 'Display Order'
},
Name: {
type: 2,
name: 'Name'
}
};
const defaultSortingType = allSortingTypes.ByAmount;
const defaultSortingType = allSortingTypes.Amount.type;
export default {
allChartTypes: allChartTypes,