Files

35 lines
763 B
JavaScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/**
* @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";
import { PayType } from "@/utils/paymentUtils";
import { aliIcon } from "@/utils/images";
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
},
{
label: '支付宝支付',
eLabel: 'ALi Pay',
icon: aliIcon,
type: PayType["2"],
disabled: true
}
]