page_no, $this->page_size); if ($lists) { $this->_success('获取成功', $lists); } else { $this->_error(TeamLogic::getError()); } } //参与拼团活动 public function buy() { $post = $this->request->post(); $post['user_id'] = $this->user_id; $post['client'] = $this->client; $check = $this->validate($post, 'app\api\validate\Team.add'); if (true !== $check) { $this->_error($check); } TeamLogic::setUser($this->user_id); TeamLogic::setTeamId($post['team_id']); TeamLogic::setTeamGoodsItem($post['item_id']); TeamLogic::setTeamGoodsNum($post['goods_num']); TeamLogic::setIntegralConfig(); $info = TeamLogic::calculateInfo($post, $this->user_id); if ($info === false){ $this->_error(TeamLogic::getError()); } if($post['action'] == 'info'){ $this->_success('', $info); } $order = TeamLogic::buy($this->user_id, $info, $post); if ($order === false){ $this->_error(TeamLogic::getError()); } $this->_success('', $order); } //验证拼团 public function check() { $post = $this->request->post(); $post['user_id'] = $this->user_id; $check = $this->validate($post, 'app\api\validate\Team.check'); if (true !== $check) { $this->_error($check); } $this->_success(); } }