修复已知bug

This commit is contained in:
zhouyanli
2026-07-21 09:41:54 +08:00
parent 7b1864f439
commit e68579a5d3
15 changed files with 1143 additions and 839 deletions

View File

@@ -539,12 +539,12 @@
getHouseAuthSendSmsCode(params).then(res => {
if (res.code === 200) {
uni.showToast({
title: `发送成功!`,
icon: 'error'
title: '发送成功',
icon: 'success'
});
} else {
uni.showToast({
title: `${res.msg}`,
title: res.msg,
icon: 'error'
});
}
@@ -739,7 +739,6 @@
uni.showToast({
title: err.msg || '提交失败',
icon: 'none',
duration: 2500
})
}
}
@@ -758,16 +757,16 @@
}, 1500);
} else {
uni.showToast({
title: `${res.msg}`,
icon: 'error'
title: res.msg,
icon: 'none'
});
}
}).catch(err => {
console.log(err);
uni.showToast({
title: `${err}`,
icon: 'error'
title: err.msg,
icon: 'none'
});
})
}