Ionic 在PhonePe中,UPI付款显示错误“出于安全原因,您不允许从您的银行帐户为本次付款汇款,”

kzmpq1sx  于 2022-12-08  发布在  Ionic
关注(0)|答案(1)|浏览(156)

UPI支付在PhonePe中显示错误“出于安全原因,您不允许从您的银行帐户为本次支付汇款。”,在Google Pay中显示错误“您已超出了银行支付限额”。正常交易不存在银行限额问题。
两个upi都是普通账户(没有一个是商业账户)
makeid()生成一个随机字母数字。

async function sendPayment(amt:String, pn:String, pa:String) {
const tid = makeid(15)
const tr = makeid(10)
var upiurl = 'upi://pay?pa='+pa+'&pn='+pn+'&tn=Brahma Electric Payment&tid=' + tid + '&tr=' + tr +'&am='+amt+'&cu=INR'
console.log(upiurl)
await window.open(upiurl)}

有人能指出哪里出了问题吗?

rkue9o1l

rkue9o1l1#

<EditText android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginRight="20dp" android:hint="Amount" android:inputType="number" />

删除android:inputType

相关问题