success('', $result); } /** * @notes 退款记录 * @return \think\response\Json * @author 段誉 * @date 2023/3/1 9:47 */ public function record() { return $this->dataLists(new RefundRecordLists()); } /** * @notes 退款日志 * @return \think\response\Json * @author 段誉 * @date 2023/3/1 9:47 */ public function log() { $recordId = $this->request->get('record_id', 0); $result = RefundLogic::refundLog($recordId); return $this->success('', $result); } }