data($result); } /** * @notes 充值设置 * @return \think\response\Json * @author 段誉 * @date 2023/2/22 16:48 */ public function setConfig() { $params = $this->request->post(); $result = RechargeLogic::setConfig($params); if($result) { return $this->success('操作成功', [], 1, 1); } return $this->fail(RechargeLogic::getError()); } /** * @notes 充值记录 * @return \think\response\Json * @author 段誉 * @date 2023/2/24 16:01 */ public function lists() { return $this->dataLists(new RechargeLists()); } /** * @notes 退款 * @return \think\response\Json * @author 段誉 * @date 2023/2/28 17:29 */ public function refund() { $params = (new RechargeRefundValidate())->post()->goCheck('refund'); $result = RechargeLogic::refund($params, $this->adminId); list($flag, $msg) = $result; if(false === $flag) { return $this->fail($msg); } return $this->success($msg, [], 1, 1); } /** * @notes 重新退款 * @return \think\response\Json * @author 段誉 * @date 2023/2/28 19:17 */ public function refundAgain() { $params = (new RechargeRefundValidate())->post()->goCheck('again'); $result = RechargeLogic::refundAgain($params, $this->adminId); list($flag, $msg) = $result; if(false === $flag) { return $this->fail($msg); } return $this->success($msg, [], 1, 1); } }