123456789101112131415161718192021222324 |
- <?php
- /**
- * @copyright Copyright (c) 2017 https://www.sapixx.com All rights reserved.
- * @license Licensed (http://www.apache.org/licenses/LICENSE-2.0).
- * @author pillar<ltmn@qq.com>
- * 用户公共调用模块
- */
- namespace app\citys\controller;
- use app\common\controller\Manage;
- use app\citys\model\MemberUser;
- class Common extends Manage{
- public $mini_program = [];
- /**
- * 初始化当前应用管理员是不是联盟城市账户
- * @return void
- */
- public function initialize() {
- parent::initialize();
- $this->mini_program = ['member_miniapp_id' => $this->member_miniapp_id];
- }
- }
|