dataLists(); } /** * @notes 添加虚拟评价 * @return \think\response\Json * @author Tab * @datetime 2022/1/18 9:46 */ public function add() { $params = (new GoodsCommentAssistantValidate())->post()->goCheck(); $result = GoodsCommentAssistantLogic::add($params); if ($result) { return JsonService::success('添加成功'); } return JsonService::fail(GoodsCommentAssistantLogic::getError()); } }