|
|
@@ -65,5 +65,16 @@ class GroupOrderController extends BaseAdminController
|
|
|
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);
|
|
|
+ }
|
|
|
}
|