From a8de1baafc85a5aa92c002b1d0093cb22e51694a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=88=B1=7E=E6=B5=B7=7E=E7=88=B1=E6=B5=B7=E7=88=B1?= =?UTF-8?q?=E6=B5=B7=7E=E5=8F=B3?= <1828712314@qq.com> Date: Thu, 27 Feb 2025 13:24:15 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E7=99=BB=E5=BD=95=E9=80=BB?= =?UTF-8?q?=E8=BE=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/login.vue | 10 ++++++++++ sub/invite/addEnterprise.vue | 9 +++++++-- sub/owner/edit.vue | 10 ++++++++-- 3 files changed, 25 insertions(+), 4 deletions(-) diff --git a/pages/login.vue b/pages/login.vue index 538895b..32021a8 100644 --- a/pages/login.vue +++ b/pages/login.vue @@ -102,6 +102,16 @@ export default { return } + if (user.userType) { + switch (user.userType) { + case 2: + uni.reLaunch({ + url: `/sub/invite/index` + }) + break + } + return + } // 局内用户首次登录 if (user.audit == null || user.audit == 1) { // 局内用户首次登录 diff --git a/sub/invite/addEnterprise.vue b/sub/invite/addEnterprise.vue index 7d92b40..77336d6 100644 --- a/sub/invite/addEnterprise.vue +++ b/sub/invite/addEnterprise.vue @@ -267,6 +267,8 @@ export default { } }, onShow() { + console.log('onShow', this.prove) + uni.$on('enterpriseIntroduce', data => { this.form.introduction = data.introduce }) @@ -274,6 +276,8 @@ export default { this.form.tags = data }) uni.$on('prove', data => { + console.log('资质', this.prove) + console.log('资质返回', data) if (this.form.id != '') { this.getProve() } else { @@ -342,6 +346,7 @@ export default { this.getProve() }, async getProve() { + console.log('getProve', this.prove) const load = this.$util.loading() const prove = await getProveList({ enterpriseId: this.form.id }) load.close() @@ -456,8 +461,8 @@ export default { uni.showToast({ icon: 'none', title: '操作成功' - }) - uni.navigateBack() + }) + uni.navigateBack() }) } else { createEnterPrise(data).then(res => { diff --git a/sub/owner/edit.vue b/sub/owner/edit.vue index 40c16e5..c40abdd 100644 --- a/sub/owner/edit.vue +++ b/sub/owner/edit.vue @@ -243,9 +243,15 @@ export default { mask: true, title: '提交中...' }) - if (!this.validateForm()) return - updateUserProfile(this.form).then(res => { + if (!this.validateForm()) { uni.hideLoading() + + return + } + updateUserProfile(this.form).then(res => { + setTimeout(function () { + uni.hideLoading() + }, 300) uni.showToast({ title: '操作成功', icon: 'success',