From d7af75f30aa28f302c320b1f6b5d5cc8d9aa8bda Mon Sep 17 00:00:00 2001 From: wangdong <1551135706@qq.com> Date: Fri, 2 Aug 2024 15:42:05 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=94=AF=E4=BB=98=E9=85=8D?= =?UTF-8?q?=E7=BD=AE=E6=96=87=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- common/enum/payment/Method.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/common/enum/payment/Method.js b/common/enum/payment/Method.js index e9213e4..8a8f7ce 100644 --- a/common/enum/payment/Method.js +++ b/common/enum/payment/Method.js @@ -7,5 +7,6 @@ import Enum from '../enum' export default new Enum([ { key: 'WECHAT', name: '微信支付', value: 'wechat' }, { key: 'ALIPAY', name: '支付宝支付', value: 'alipay' }, - { key: 'BALANCE', name: '余额支付', value: 'balance' } + { key: 'BALANCE', name: '余额支付', value: 'balance' }, + { key: 'HUIFU', name: '银联支付', value: 'huifu' } ])