From 3a82976b3c8acf4fdfd48811bc0d7a25498c7e8e Mon Sep 17 00:00:00 2001 From: devil_gong Date: Tue, 28 May 2019 16:15:32 +0800 Subject: [PATCH] =?UTF-8?q?=E8=AE=A2=E5=8D=95=E9=80=80=E6=AC=BE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- application/service/RefundLogService.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/service/RefundLogService.php b/application/service/RefundLogService.php index 2509c1417..f4afa7ffd 100644 --- a/application/service/RefundLogService.php +++ b/application/service/RefundLogService.php @@ -54,7 +54,7 @@ class RefundLogService 'payment' => isset($params['payment']) ? $params['payment'] : '', 'payment_name' => isset($params['payment_name']) ? $params['payment_name'] : '', 'business_type' => isset($params['business_type']) ? intval($params['business_type']) : 0, - 'return_params' => empty($params['return_params']) ? '' : json_encode($params['return_params'], 'JSON_UNESCAPED_UNICODE'), + 'return_params' => empty($params['return_params']) ? '' : json_encode($params['return_params'], JSON_UNESCAPED_UNICODE), 'add_time' => time(), ]; return Db::name('RefundLog')->insertGetId($data) > 0;