Commit 85cec1b1 authored by shajiaiming's avatar shajiaiming

Merge branch 'feature/optimize' into develop

parents 673ae21f 5119bbc5
...@@ -10,7 +10,7 @@ use common\models\psources\WalletRecommendCategory; ...@@ -10,7 +10,7 @@ use common\models\psources\WalletRecommendCategory;
class RecommendCoinController extends BaseController class RecommendCoinController extends BaseController
{ {
public function actionIndex() public function actionTop()
{ {
$platform_id = $this->platform_id; $platform_id = $this->platform_id;
if (false == $platform_id) { if (false == $platform_id) {
...@@ -19,21 +19,14 @@ class RecommendCoinController extends BaseController ...@@ -19,21 +19,14 @@ class RecommendCoinController extends BaseController
goto doEnd; goto doEnd;
} }
$type = Yii::$app->request->get('type', 1); $type = Yii::$app->request->get('type', 1);
$is_top = Yii::$app->request->get('is_top', '');
if (false == $is_top) {
$recommend_category = WalletRecommendCategory::find()->select('id, name') $recommend_category = WalletRecommendCategory::find()->select('id, name')
->where(['wallet_type' => (int)$type, 'platform_id' => (int)$platform_id]) ->where(['wallet_type' => (int)$type, 'platform_id' => (int)$platform_id])
->andWhere(['>', 'sort', 1])
->orderBy('sort')->asArray()->all();
} else {
$recommend_category = WalletRecommendCategory::find()->select('id, name')
->where(['wallet_type' => (int)$type, 'platform_id' => (int)$platform_id, 'sort' => 1])
->orderBy('sort')->limit(1)->asArray()->all(); ->orderBy('sort')->limit(1)->asArray()->all();
}
if (empty($recommend_category)) { if (empty($recommend_category)) {
goto doEnd; goto doEnd;
} }
$ticker = ['low' => 0, 'high' => 0, 'last' => 0, 'open' => 0, 'vol' => 0, 'rmb' => 0, 'usd' => 0];
foreach ($recommend_category as &$category) { foreach ($recommend_category as &$category) {
$name = json_decode($category['name'], true); $name = json_decode($category['name'], true);
$category['name'] = isset($name[$this->lang]) ? $name[$this->lang] : ''; $category['name'] = isset($name[$this->lang]) ? $name[$this->lang] : '';
...@@ -56,7 +49,6 @@ class RecommendCoinController extends BaseController ...@@ -56,7 +49,6 @@ class RecommendCoinController extends BaseController
$category['items'] = $items; $category['items'] = $items;
} }
if (!empty($is_top)) {
$result = $recommend_category[0]['items']; $result = $recommend_category[0]['items'];
//获取行情信息 //获取行情信息
$coin_names = array_column($result, 'name'); $coin_names = array_column($result, 'name');
...@@ -72,8 +64,50 @@ class RecommendCoinController extends BaseController ...@@ -72,8 +64,50 @@ class RecommendCoinController extends BaseController
} }
$this->data = $result; $this->data = $result;
doEnd :
return ['code' => $this->code, 'data' => $this->data, 'msg' => $this->msg];
}
public function actionIndex()
{
$platform_id = $this->platform_id;
if (false == $platform_id) {
$this->code = -1;
$this->msg = '参数错误';
goto doEnd;
}
$type = Yii::$app->request->get('type', 1);
$recommend_category = WalletRecommendCategory::find()->select('id, name')
->where(['wallet_type' => (int)$type, 'platform_id' => (int)$platform_id])
->andWhere(['>', 'sort', 1])
->orderBy('sort')->asArray()->all();
if (empty($recommend_category)) {
goto doEnd; goto doEnd;
} }
foreach ($recommend_category as &$category) {
$name = json_decode($category['name'], true);
$category['name'] = isset($name[$this->lang]) ? $name[$this->lang] : '';
$recommend_coin = WalletRecommendCoin::find()->where(['category_id' => $category['id']])->all();
$items = [];
foreach ($recommend_coin as $coin) {
$temp['icon'] = $coin->coin['icon'];
$temp['name'] = $coin->coin['name'];
$temp['platform'] = $coin->coin['platform'];
$temp['chain'] = $coin->coin['chain'];
$temp['treaty'] = $coin->coin['treaty'];
$temp['exchange_id'] = $coin->coin['exchange_id'];
$nickname = json_decode($coin->coin['nickname'], true);
$temp['nickname'] = isset($nickname[$this->lang]) ? $nickname[$this->lang] : '';
$introduce = json_decode($coin->coin['introduce'], true);
$temp['introduce'] = isset($introduce[$this->lang]) ? $introduce[$this->lang] : '';
array_push($items, $temp);
}
$category['items'] = $items;
}
$this->data = $recommend_category; $this->data = $recommend_category;
doEnd : doEnd :
......
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