| 1234567891011121314151617181920 |
- <?php
- namespace addons\Mch\client\controllers;
- use addons\Mch\common\models\Mch;
- use Yii;
- class MchController extends BaseController{
- /**
- * 门店首页(概况)
- * @Author bing
- * @DateTime 2022-04-26 18:06:27
- * @copyright: Copyright (c) 2022 广东七件事集团
- * @return void
- */
- public function actionIndex(){
- $mch = Mch::getOne([['id'=>$this->mch_id],['mall_id'=>$this->mall_id]],true);
- return $this->success('操作成功', $mch);
- }
- }
|