From 91e595bd9d6a7457211f75ca5ad43199da90abe0 Mon Sep 17 00:00:00 2001 From: wangdong <1551135706@qq.com> Date: Fri, 2 Aug 2024 12:56:40 +0800 Subject: [PATCH] =?UTF-8?q?=E8=AE=A2=E5=8D=95=E7=AE=A1=E7=90=86=E9=97=AE?= =?UTF-8?q?=E9=A2=98=E4=BF=AE=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/common/enum/payment/Method.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/common/enum/payment/Method.js b/src/common/enum/payment/Method.js index cc69562..eb32eed 100644 --- a/src/common/enum/payment/Method.js +++ b/src/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' } ])