Browse Source

Default Changelist

yingzi 2 years ago
parent
commit
e2a32d9a71
1 changed files with 1 additions and 1 deletions
  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 = [];