mailto修改

This commit is contained in:
2025-08-04 09:08:09 +08:00
parent 096b346d54
commit dcf587dc8a
5 changed files with 12 additions and 11 deletions

View File

@ -975,6 +975,7 @@
resetRechargeForm() {
this.rechargeForm = {
amount: 10,
finished: false,
};
},
handleCancelRecharge() {
@ -1101,12 +1102,12 @@
createCheckOrderTimer() {
if (this.checkOrderTimer) {
clearInterval(this.checkOrderTimer);
} else {
}
console.log("createCheckOrderTimer")
this.checkOrderTimer = setInterval(() => {
this.getOrderStatus(this.rechargeData.orderNo);
}, 10000);
}
},
getMyBalance(){
fetch(requestApi + "/member-balance/balance", {
@ -1806,7 +1807,7 @@
this.smsList.forEach(item => {
const newItem = codesMap.get(item.activationId); // 尝试从 Map 中获取新 code
if (newItem.status !== item.status) { // 如果找到了匹配的 activationId
if (newItem!==undefined&&newItem!==null&&newItem.status===2) { // 如果找到了匹配的 activationId
item.code = newItem.code; // 替换 code
item.status = newItem.status; // 修改 status 为 2
}})