2023-11-14 17:21:03 +08:00
|
|
|
|
/**
|
|
|
|
|
* @name: index.data
|
|
|
|
|
* @author: kahu4
|
|
|
|
|
* @date: 2023-11-08 11:08
|
|
|
|
|
* @description:index.data
|
|
|
|
|
* @update: 2023-11-08 11:08
|
|
|
|
|
* */
|
2024-02-08 21:01:37 +08:00
|
|
|
|
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
|
2024-02-08 21:01:37 +08:00
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
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
|
|
|
|
|
}
|
|
|
|
|
]
|