| 1234567891011121314151617181920 |
- <?php
- namespace mobile\controllers;
- use common\components\configDict;
- use Yii;
- use yii\web\Controller;
- use yii\filters\AccessControl;
- use yii\helpers\Json;
- use common\services\xhMerchantService;
- use common\models\xhMerchant;
- class MerchantController extends MobileendController{
- public function actionInfo()
- {
- $status = configDict::getConfig('merchantStatusName');
- return $this->renderPartial('info',['status' => $status,'merchant' => $this->merchant]);
- }
- }
|