From 2df615ace5ede4d7c93a9b45806fdf9013ae57a1 Mon Sep 17 00:00:00 2001 From: pyt <626651354@qq.com> Date: 星期二, 18 三月 2025 18:36:33 +0800 Subject: [PATCH] fix --- H5/pages/authentication/authentication.vue | 11 +++++------ 1 files changed, 5 insertions(+), 6 deletions(-) diff --git a/H5/pages/authentication/authentication.vue b/H5/pages/authentication/authentication.vue index b599f64..a6d0bed 100644 --- a/H5/pages/authentication/authentication.vue +++ b/H5/pages/authentication/authentication.vue @@ -260,17 +260,16 @@ this.form.avatar = this.imgUrls[0]; if (this.detail) { - await edit(this.form); + let res = await edit(this.form); + console.log(res); } else { - await apply(this.form); + let res = await apply(this.form); + console.log(res); } this.$refs.savePop.showPopup(); this.loading = false; } catch (error) { - uni.showToast({ - title: '提交失败,请重试', - icon: 'none' - }); + } finally { this.loading = false; } -- Gitblit v1.7.1