Browse Source

Merge branch 'fms_3.1' into debug

xiziwen 3 months ago
parent
commit
b206851edb
1 changed files with 6 additions and 1 deletions
  1. 6 1
      controller/census/income_list.go

+ 6 - 1
controller/census/income_list.go

@@ -1610,7 +1610,12 @@ func getCensusIncomeList(ch chan base.BaseData, req fms.IncomeListReq) (baseData
 				}
 				resultList = append(resultList, results...)
 			}
-			sort.Sort(resultList)
+
+			if req.SortType == "desc" {
+				sort.Sort(sort.Reverse(resultList))
+			} else {
+				sort.Sort(resultList)
+			}
 
 			// 货币列表
 			currencyOB := new(fms.CurrencyUnit)