dataLists(new OrderRefundLists()); } /** * @notes 退款日志列表 * @return \think\response\Json * @author ljj * @date 2022/9/9 5:53 下午 */ public function logLists() { return $this->dataLists(new OrderRefundLogLists()); } /** * @notes 重新退款 * @return \think\response\Json * @author ljj * @date 2022/9/9 6:19 下午 */ public function reRefund() { $params = (new OrderRefundValidate())->post()->goCheck('reRefund'); $params['admin_id'] = $this->adminId; $result = (new OrderRefundLogic())->reRefund($params); if (true !== $result) { return $this->fail($result); } return $this->success('操作成功',[],1,1); } }