支付返回,修改禅道bug

This commit is contained in:
zhouyanli
2026-07-28 17:48:06 +08:00
parent a9a5afaf26
commit 9be76c6386
10 changed files with 52 additions and 65 deletions

View File

@@ -192,7 +192,7 @@
console.log(form.value);
} catch (err) {
uni.showToast({
title: `${err}`,
title: err.msg || '网络异常',
icon: 'none'
})
console.error('列表接口报错:', err)
@@ -232,14 +232,14 @@
} else {
uni.showToast({
title: res.msg,
icon: 'error'
icon: 'none'
});
}
}).catch(err => {
uni.showToast({
title: err,
icon: 'error'
title: err.msg,
icon: 'none'
});
})