remove some js method

This commit is contained in:
CounterFire2023 2023-08-02 10:32:20 +08:00
parent 451d28a142
commit 033772bf93

View File

@ -536,16 +536,4 @@ function queryGooglePurchases(funId) {
function beginGoogleBuy(funId, productId, orderId) {
promiseCb(funId, jc.wallet.paySvr.buyGoogleProduct(productId, orderId));
}
// end of google pay
// begin of iOS in-app pay
function queryIOSProducts(funId, productIds) {
let ids = JSON.parse(productIds);
console.log('queryIOSProducts:: ' + productIds);
promiseCb(funId, jc.wallet.paySvr.queryIOSProducts(ids));
}
function beginAppleBuy(funId, productId, orderId) {
promiseCb(funId, jc.wallet.paySvr.beginIOSPurchase(productId, orderId));
}