dataLists(new UserFeedbackLists()); } public function add() { $params = (new UserFeedbackValidate())->post()->goCheck('add'); $result = UserFeedbackLogic::add($params,$this->request->userInfo['user_id']); if (true === $result) { return $this->success('添加成功', [], 1, 1); } return $this->fail(UserFeedbackLogic::getError()); } }