Вот мой код processFeeSubmission (), событие щелчка, после чего браузер PayTM не открыт в устройстве.и я следую https://github.com/latamind/cordova-plugin-paytm
за интеграцию PayTM, пожалуйста, помогите мне, почему я не могу открыть PayTM в браузере?
declare var window;
export class WardFeeDetailPage extends BasePageComponent {
paymentReceipts: Array<PaymentReceipt> = [];
user: any;
feeDetail: FeeDetail;
currentDate: Date = new Date();
totalAmount: number = 0;
message2: Message;
processFeeSubmission({ selectedOption, feeDetail }) {
window.cordova.paytm.startPayment(paytm.merchantId, this.user.username, paytm.channelId, paytm.industryTypeId, paytm.website, orderId, paytm.email, this.user.contactNo, this.feeDetail.balance, callbackUrl, checksum, paytm.isProduction || false, (res) => this.onPaytmSuccess(res), (e) => this.onPaytmError(e));
}}