interface OpenPayListPopupParams {
    extra?: string;
    item_id: string;
    result?: ((__namedParameters: {
        errorMsg?: string;
        extra: undefined | string;
        status: InvoiceStatus;
    }) => void);
    start?: ((payItem: {
        amount: string | number;
        token: PayTypes;
    }) => void);
    type: "PAY_LIST";
}

Hierarchy

  • OpenPayBaseParams
    • OpenPayListPopupParams

Properties

extra?: string

扩展信息

'''
item_id: string
result?: ((__namedParameters: {
    errorMsg?: string;
    extra: undefined | string;
    status: InvoiceStatus;
}) => void)

支付结果回调

start?: ((payItem: {
    amount: string | number;
    token: PayTypes;
}) => void)

开始支付回调

type: "PAY_LIST"

当前支付弹窗类型

'PAY'