mailto修改
This commit is contained in:
@ -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
|
||||
}})
|
||||
|
||||
Reference in New Issue
Block a user