branch['user']; // $model = new FavoriteModel(); $model = new UserModel(); $list = $model->getUserList($branch['branch_id'], $this->postData()); return $this->renderSuccess('', compact('list')); } /** * 公众号用户列表 by lyzflash */ public function mplists() { $branch = $this->branch['user']; $model = new UserModel(); $list = $model->getUserList($branch['branch_id'], $this->postData()); return $this->renderSuccess('', compact('list')); } }