Files
2026-03-08 20:07:52 +08:00

11 lines
374 B
JavaScript

export function handleGoRecharge(recharge, merId) {
uni.showLoading({
title: '正在提交中'
});
setTimeout(() => {
uni.navigateTo({
url: `/pages/goods/order_payment/index?orderNo=other&payPrice=${recharge.price}&fromType=shoppingCredits&merId=${merId}&packageId=${recharge.id}`
});
uni.hideLoading();
}, 1000)
}