From 9f2b4a6b46e5f69e9dc6dfbff8a4797074cdcfcb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=82=B9=E6=99=AF=E7=AB=8B?= Date: Wed, 9 Nov 2022 17:48:13 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=94=AF=E4=BB=98=E5=AE=9D?= =?UTF-8?q?=E6=94=AF=E4=BB=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/data/service/PaymentService.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/data/service/PaymentService.php b/app/data/service/PaymentService.php index d0378fe20..151accf12 100644 --- a/app/data/service/PaymentService.php +++ b/app/data/service/PaymentService.php @@ -100,17 +100,17 @@ abstract class PaymentService ], // 支付宝支持配置(不需要的直接注释) self::PAYMENT_ALIPAY_WAP => [ - 'type' => '', + 'type' => self::PAYMENT_ALIPAY_WAP, 'name' => '支付宝WAP支付', 'bind' => [UserAdminService::API_TYPE_WAP], ], self::PAYMENT_ALIPAY_WEB => [ - 'type' => '', + 'type' => self::PAYMENT_ALIPAY_WEB, 'name' => '支付宝WEB支付', 'bind' => [UserAdminService::API_TYPE_WEB], ], self::PAYMENT_ALIAPY_APP => [ - 'type' => '', + 'type' => self::PAYMENT_ALIAPY_APP, 'name' => '支付宝APP支付', 'bind' => [UserAdminService::API_TYPE_ANDROID, UserAdminService::API_TYPE_IOSAPP], ],