shish 1 rok temu
rodzic
commit
08e1b28e6d
1 zmienionych plików z 2 dodań i 2 usunięć
  1. 2 2
      app-ghs/controllers/OrderController.php

+ 2 - 2
app-ghs/controllers/OrderController.php

@@ -697,7 +697,7 @@ class OrderController extends BaseController
         $authCode = (string)$get['authCode'] ?? '';
         $authCode = trim($authCode);
         if (empty($authCode)) {
-            $msg = '没有付款码';
+            $msg = '没有扫到付款码';
             $remind = $msg . "(付款码:{$authCode})" . '(' . $name . ')';
             noticeUtil::push($remind . ' 编号001', '15280215347');
             util::success(['returnStatus' => 'FAILURE'], $msg);
@@ -707,7 +707,7 @@ class OrderController extends BaseController
         //支付宝文档说明 https://opendocs.alipay.com/open/194/106039/
         $aliPattern = '/^(25|26|27|28|29|30)\d{14,22}$/';
         if (!preg_match($wxPattern, $authCode) && !preg_match($aliPattern, $authCode)) {
-            $msg = '付款码有问题';
+            $msg = '付款码有问题';
             $remind = $msg . "(付款码:{$authCode})" . '(' . $name . ')';
             noticeUtil::push($remind . ' 编号002', '15280215347');
             util::success(['returnStatus' => 'FAILURE'], $msg);