dataLists(new GroupUserOrderLists()); } /** * @notes 用户订单退款 */ public function refundOrder() { $params = $this->request->request('id'); $result = GroupUserOrderLogic::refundOrder($params); if (true === $result) { return $this->success('退款成功', [], 1, 1); } return $this->fail(GroupUserOrderLogic::getError()); } }