Просмотр исходного кода

【程序目录】优化热销产品按照销量排序

evoxwht 3 лет назад
Родитель
Сommit
85483987b7
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      crmeb/app/dao/product/product/StoreProductDao.php

+ 1 - 1
crmeb/app/dao/product/product/StoreProductDao.php

@@ -223,7 +223,7 @@ class StoreProductDao extends BaseDao
             ->when($limit, function ($query) use ($limit) {
                 $query->limit($limit);
             })
-            ->order('sort DESC, id DESC')->select()->toArray();
+            ->order(($field == 'is_hot' ? 'sales DESC' : 'sort DESC') . ', id DESC')->select()->toArray();
 
     }