You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
359 B
12 lines
359 B
import Enum from '../enum'
|
|
|
|
/**
|
|
* 枚举类:支付方式类型
|
|
* PayMethodEnum
|
|
*/
|
|
export default new Enum([
|
|
{ key: 'WECHAT', name: '微信支付', value: 'wechat' },
|
|
{ key: 'ALIPAY', name: '支付宝支付', value: 'alipay' },
|
|
{ key: 'BALANCE', name: '余额支付', value: 'balance' },
|
|
{ key: 'HUIFU', name: '银联支付', value: 'huifu' },
|
|
])
|
|
|