Commit f0a6b411 authored by rlgy's avatar rlgy

分页BUG

parent ba053328
......@@ -107,7 +107,7 @@ class CoinReleaseCheckController extends BaseController
$model->scenario = CoinReleaseCheck::SCENARIOS_SEARCH;
if ($model->load($get) && $model->validate()) {
$page = $get['page'] ?? 1;
$limit = $page['limit'] ?? 10;
$limit = $get['limit'] ?? 10;
$query = CoinReleaseCheck::find()->andFilterWhere(['!=', 'status', 0])->andFilterWhere([
'status' => $model->status,
'coin' => $model->coin,
......
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