29 lines
619 B
JavaScript
29 lines
619 B
JavaScript
![]() |
/**
|
|||
|
* @name: index.data
|
|||
|
* @author: kahu4
|
|||
|
* @date: 2023-11-08 11:08
|
|||
|
* @description:index.data
|
|||
|
* @update: 2023-11-08 11:08
|
|||
|
* */
|
|||
|
import wechatIcon from "@/static/icon/pay/weixin.png";
|
|||
|
import { PayType } from "@/utils/paymentUtils";
|
|||
|
import aliIcon from "@/static/icon/pay/zhifubao.png";
|
|||
|
|
|||
|
export const payRows = [
|
|||
|
{
|
|||
|
label: '微信支付',
|
|||
|
eLabel: 'Wechat Pay',
|
|||
|
icon: wechatIcon,
|
|||
|
type: PayType["0"],
|
|||
|
disabled: false
|
|||
|
|
|||
|
},
|
|||
|
{
|
|||
|
label: '支付宝支付',
|
|||
|
eLabel: 'ALi Pay',
|
|||
|
icon: aliIcon,
|
|||
|
type: PayType["2"],
|
|||
|
disabled: true
|
|||
|
}
|
|||
|
]
|