| 123456789101112131415161718192021222324 |
- <?php
- namespace client\controllers;
- use biz\goods\services\CategoryService;
- use biz\goods\services\GoodsCategoryService;
- use biz\merchant\services\MerchantService;
- use biz\merchant\services\ShopService;
- use Yii;
- use yii\web\Controller;
- use common\components\util;
- class ShopController extends BaseController
- {
-
- //获取用户所属商家的默认门店 shish 2019.12.6
- public function actionDefaultShop()
- {
- $merchant = $this->merchant;
- $shop = ShopService::getDefaultShopInfo($merchant);
- util::success($shop);
- }
- }
|