Commit 332dde66 authored by shajiaiming's avatar shajiaiming

Merge branch 'feature/airdrop' into develop

parents 80cd43db aff4d514
......@@ -63,8 +63,8 @@ class AirDropController extends BaseController
$apply_id_arr = explode(',', $apply_ids);
$query->andWhere(['in', 'id', $apply_id_arr]);
}
$expiry_date = date("Y-m-d", time()) . " 00:00:00";
$query->andWhere(['<', 'create_time', $expiry_date]);
// $expiry_date = date("Y-m-d", time()) . " 00:00:00";
// $query->andWhere(['<', 'create_time', $expiry_date]);
$items = $query->offset(($page - 1) * $size)->orderBy('id desc')->limit($size)->all();
$countQuery = clone $query;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment