Browse Source

[Fix 0000] 调整公司端看板排序

houzekong 9 months ago
parent
commit
4b0e645aeb
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/views/vent/home/billboard/billboard.api.ts

+ 1 - 1
src/views/vent/home/billboard/billboard.api.ts

@@ -21,7 +21,7 @@ export const getSummary: () => Promise<BillboardType[]> = () =>
       },
     })
     .then((res: BillboardType[]) => {
-      return res.sort((r) => {
+      return res.reverse().sort((r) => {
         return r.orgname ? -1 : 1;
       });
     });