* Date: 2019/6/29 * Time: 14:27 */ namespace mini\controllers; use common\components\util; use common\services\xhGoodsService; use common\services\xhRecommendService; use Yii; use yii\helpers\Json; class RecommendController extends BaseController{ public function actionGetSlide() { $slide = xhRecommendService::getSlide($this->merchantId); echo Json::encode($slide); } }