| 1234567891011121314151617181920212223 |
- <?php
- namespace backend\widgets;
- use yii\base\Widget;
- use common\components\configDict;
- use common\services\xhWxOpenService;
- class FooterWidget extends Widget
- {
- public $message;
- public function init()
- {
- parent::init();
- }
- public function run()
- {
- $openId = configDict::getConfig('openId');
- $open = xhWxOpenService::getById($openId);
- return $this->render('footer',['open'=>$open]);
- }
- }
|