修改显示错误

This commit is contained in:
2024-12-10 17:35:28 +08:00
parent 307be86cb4
commit f63b2f3319
4 changed files with 6 additions and 2 deletions

View File

@@ -126,6 +126,10 @@ Page({
},
async recharge() {
const { user, money, meter, tenement, park } = this.data;
if (!user || !user.id) {
alertInfo("请先登录")
return;
}
const { code, message, data } = await getTenementExceptionalCase(park?.id, tenement?.id);
if (code !== OK) {
alertInfo(message)