瀏覽代碼

积分订单状态倒叙排列

吴昊天 2 年之前
父節點
當前提交
a05ccb6124
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      crmeb/app/dao/activity/integral/StoreIntegralOrderStatusDao.php

+ 1 - 1
crmeb/app/dao/activity/integral/StoreIntegralOrderStatusDao.php

@@ -43,7 +43,7 @@ class StoreIntegralOrderStatusDao extends BaseDao
      */
     public function getStatusList(array $where, int $page, int $limit)
     {
-        return $this->search($where)->page($page, $limit)->select()->toArray();
+        return $this->search($where)->page($page, $limit)->order('change_time desc')->select()->toArray();
     }
 
 }