| 12345678910111213141516171819 |
- <?php
- namespace mini\controllers;
- use common\components\util;
- use common\services\xhGoodsService;
- use common\services\xhRecommendService;
- use Yii;
- use yii\helpers\Json;
- class MainController extends BaseController{
- public function actionIndex()
- {
- $slide = xhRecommendService::getSlide($this->merchantId);
- //$list = xhGoodsService::getLimitGoods($this->merchantId);
- echo Json::encode($slide);
- }
- }
|