소스 검색

[Chg] Add catalog sort

Ark 4 년 전
부모
커밋
0ccb29e0d9
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/api/controller/catalog.js

+ 1 - 1
src/api/controller/catalog.js

@@ -9,7 +9,7 @@ module.exports = class extends Base {
     const categoryId = this.get('id');
 
     const model = this.model('category');
-    const data = await model.limit(10).where({parent_id: 0}).select();
+    const data = await model.limit(10).order({'sort_order': 'desc'}).where({parent_id: 0}).select();
 
     let currentCategory = null;
     if (categoryId) {