Files

35 lines
763 B
JavaScript
Raw Permalink Normal View History

2023-11-14 17:21:03 +08:00
/**
* @name: index.data
* @author: kahu4
* @date: 2023-11-08 11:08
* @descriptionindex.data
* @update: 2023-11-08 11:08
* */
import { balanceIcon, wechatIcon } from "@/utils/images";
2023-11-14 17:21:03 +08:00
import { PayType } from "@/utils/paymentUtils";
2023-11-17 20:55:32 +08:00
import { aliIcon } from "@/utils/images";
2023-11-14 17:21:03 +08:00
export const payRows = [
{
label: '微信支付',
eLabel: 'Wechat Pay',
icon: wechatIcon,
type: PayType["0"],
disabled: false
},
{
label: '余额支付',
eLabel: 'Balance Pay',
icon: balanceIcon,
type: PayType["1"],
disabled: false
2023-11-14 17:21:03 +08:00
},
{
label: '支付宝支付',
eLabel: 'ALi Pay',
icon: aliIcon,
type: PayType["2"],
disabled: true
}
]