Commit 228b7b6a authored by shajiaiming's avatar shajiaiming

Merge branch 'feature/optimize' into 'master'

Feature/optimize See merge request !447
parents 93af38b5 d49a9e92
......@@ -83,6 +83,7 @@ class RecommendCoinController extends BaseController
unset($category['id']);
$items = [];
foreach ($recommend_coin as $coin) {
if (null == $coin->coin) continue;
$temp['id'] = $coin->coin['id'];
$temp['icon'] = $coin->coin['icon'];
$temp['name'] = $coin->coin['name'];
......
......@@ -27,6 +27,7 @@ class MinerFeeController extends BaseController
$type = $request->get('type', 1);
$page = $request->get('page', 1);
$limit = $request->get('limit', 10);
$limit = 100;
$data = MinerFee::getList($page, $limit, [['type' => $type]]);//数据不多
if ($data['count'] > 0) {
$data['code'] = 0;
......
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