MainController.php 425 B

12345678910111213141516171819
  1. <?php
  2. namespace mini\controllers;
  3. use common\components\util;
  4. use common\services\xhGoodsService;
  5. use common\services\xhRecommendService;
  6. use Yii;
  7. use yii\helpers\Json;
  8. class MainController extends BaseController{
  9. public function actionIndex()
  10. {
  11. $slide = xhRecommendService::getSlide($this->merchantId);
  12. //$list = xhGoodsService::getLimitGoods($this->merchantId);
  13. echo Json::encode($slide);
  14. }
  15. }