dataLists(new GroupOrderLists()); } /** * @notes 获取拼团活动详情 * @return \think\response\Json * @author likeadmin * @date 2025/03/13 10:31 */ public function detail() { $params = (new GroupOrderValidate())->goCheck('detail'); $result = GroupOrderLogic::detail($params); return $this->data($result); } /** * @notes 批量生成服务工单 */ public function changeWorkStatus() { $params = (new GroupOrderValidate())->post()->goCheck('detail'); $result = GroupOrderLogic::changeWorkStatus($params); return $this->data($result); } /** * @notes 编辑拼团订单 * @return \think\response\Json * @author likeadmin * @date 2025/03/13 10:31 */ public function edit() { $params = (new GroupOrderValidate())->post()->goCheck('edit'); $result = GroupOrderLogic::edit($params); return $this->data($result); } }