| | |
| | | { |
| | | $model = new ActivityModel; |
| | | $list = $model->getList($category_id, $this->postData(), $this->getUser()); |
| | | return $this->renderSuccess('', compact('list')); |
| | | $words = BranchSettingModel::getItem('words'); |
| | | return $this->renderSuccess('', compact('list', 'words')); |
| | | } |
| | | |
| | | /** |
| | |
| | | return $this->renderSuccess('', compact('order_id')); |
| | | } |
| | | } |
| | | |
| | | public function getRegistrationInformation($user_id = 0,$activity_id=0) |
| | | { |
| | | // 生成报名用户 |
| | | $model = new ActivityUserModel(); |
| | | $user=$this->getUser(); |
| | | $userId = $user_id!=0?$user_id:$user['user_id']; |
| | | $registrationInformation = $model->getRegistrationInformation($userId,$activity_id); |
| | | return $this->renderSuccess('', compact('registrationInformation')); |
| | | } |
| | | /** |
| | | * 生成活动海报 |
| | | */ |