ソースを参照

feat: 修复日期排序

rindy 2 年 前
コミット
d3b94082eb
1 ファイル変更4 行追加0 行削除
  1. 4 0
      src/pages/SViewer.vue

+ 4 - 0
src/pages/SViewer.vue

@@ -163,6 +163,10 @@ const sourceDays = computed(() => {
         }
     })
 
+    outDays.year.sort((a,b)=>b-a)
+    outDays.month.sort()
+    outDays.day.sort()
+
     return outDays
 })