李昊 4 years ago
parent
commit
e2aa7730f3

+ 1 - 1
gx_api/GxPress/Api/GxPress.Api/AppControllers/AppPageController.cs

@@ -214,7 +214,7 @@ namespace GxPress.Api.AppControllers
         [AllowAnonymous]
         public async Task<List<MediaRankingResult>> GetRankingListResults()
         {
-            var dictionary = new Dictionary<int, string>() { { 2, "热书榜" }, { 3, "课程榜" }, { 4, "文献头条" }, { 6, "听榜" } };
+            var dictionary = new Dictionary<int, string>() { { 2, "热书榜" }, { 3, "课程榜" }, { 4, "文献头条" }, { 6, "听榜" } };
             var dictionaryMedia = new Dictionary<int, string>() { { AllTypeConst.Book.GetHashCode(), "热书榜" }, { AllTypeConst.Curriculum.GetHashCode(), "课程榜" }, { AllTypeConst.Article.GetHashCode(), "文献头条" }, { AllTypeConst.Audio.GetHashCode(), "试听榜" } };
             var result = new List<MediaRankingResult>();
             foreach (var item in dictionary)