浏览代码

Default Changelist

yingzi 2 年之前
父节点
当前提交
e2a32d9a71
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      app/api/controller/Pub.php

+ 1 - 1
app/api/controller/Pub.php

@@ -308,7 +308,7 @@ class Pub extends BaseController
         $time = $request->param('time', time());
         $list = (new UserModel)->where('card_look_count', '>', 0);
         if ($time > 0) {
-            $list = $list->whereTime('create_time', '>=', $time);
+            $list = $list->whereTime('regtime', '>=', $time);
         }
         $list = $list->order('card_look_count', 'desc')->select();
         $rankList = [];