Ver código fonte

[Chg] Add catalog sort

Ark 4 anos atrás
pai
commit
0ccb29e0d9
1 arquivos alterados com 1 adições e 1 exclusões
  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) {