ShopController.php 282 B

12345678910111213141516171819
  1. <?php
  2. namespace pt\controllers;
  3. use bizHd\merchant\services\ShopService;
  4. use common\components\util;
  5. use Yii;
  6. class ShopController extends BaseController
  7. {
  8. public function actionList()
  9. {
  10. $where = [];
  11. $list = ShopService::getShopList($where);
  12. util::success($list);
  13. }
  14. }