request->get(); $type = $this->request->get( 'type'); $lists = CommonLogic::getActivity($get, $type); return $this->success('获取成功', $lists); } /** * @notes 获取活动商品列表 * @author 张无忌 * @date 2021/10/9 18:42 */ public function activityGoods() { $type = $this->request->get('type'); $activity_id = $this->request->get('activity_id'); $keyword = $this->request->get('keyword', ''); $lists = CommonLogic::getActivityGoods($type, $activity_id, $keyword); return $this->success('获取成功', $lists); } }