diff --git a/app/Service/v3/Implementations/FeiePrintService.php b/app/Service/v3/Implementations/FeiePrintService.php index 3b29a74..b8e82eb 100644 --- a/app/Service/v3/Implementations/FeiePrintService.php +++ b/app/Service/v3/Implementations/FeiePrintService.php @@ -227,7 +227,7 @@ class FeiePrintService implements FeiePrintServiceInterface } $orderStatistics = $this->orderStatistics->getForMarket($arr->market_id); $str = sprintf ("%05d", $orderStatistics); // 生成5位数,不足前面补0 - $orderInfo .= $arr->global_order_id.$str; + $orderInfo .= '流水号:' . $arr->global_order_id.$str; //$orderInfo .= 'http://www.feieyun.com';//把解析后的二维码生成的字符串用标签套上即可自动生成二维码 return $orderInfo; }