35 lines
763 B
JavaScript
35 lines
763 B
JavaScript
/**
|
||
* @name: index.data
|
||
* @author: kahu4
|
||
* @date: 2023-11-08 11:08
|
||
* @description:index.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
|
||
}
|
||
]
|