From 8df583f186072964a26174e8197ba9273a5f188f Mon Sep 17 00:00:00 2001 From: zhangrui Date: Tue, 21 Apr 2026 08:53:52 +0800 Subject: [PATCH] 1 --- .../zhgh/staffmanage/member/apply/submit/index.html | 10 +++++++--- .../zhghh5/staffmanage/member/apply/submit/index.html | 6 +++++- 2 files changed, 12 insertions(+), 4 deletions(-) diff --git a/src/main/resources/views/platform/zhgh/staffmanage/member/apply/submit/index.html b/src/main/resources/views/platform/zhgh/staffmanage/member/apply/submit/index.html index 5dd9f6f7..59935dc6 100644 --- a/src/main/resources/views/platform/zhgh/staffmanage/member/apply/submit/index.html +++ b/src/main/resources/views/platform/zhgh/staffmanage/member/apply/submit/index.html @@ -20,8 +20,8 @@ layout("/layouts/platform.html"){ - 男性 - 女性 + + @@ -229,7 +229,7 @@ layout("/layouts/platform.html"){ - + 保存 提交 提交 @@ -247,6 +247,8 @@ layout("/layouts/platform.html"){ id: GetQueryString("bizId"), taskId: GetQueryString("taskId"), units: [], + // 当前登录人已是会员时,不显示保存和提交按钮。 + showActionButtons: true, formData: { families: [] }, @@ -396,6 +398,8 @@ layout("/layouts/platform.html"){ } else { user = this.$store.state.user } + // 页面按钮是否展示,以当前登录人的会员状态为准。 + this.showActionButtons = !(user && user.member) if (this.id) { const res = await this.$axios.post("/platform/member/apply/submit/findApplyById", { id: this.id }) diff --git a/src/main/resources/views/platform/zhghh5/staffmanage/member/apply/submit/index.html b/src/main/resources/views/platform/zhghh5/staffmanage/member/apply/submit/index.html index 7628ca4e..ffd3cec7 100644 --- a/src/main/resources/views/platform/zhghh5/staffmanage/member/apply/submit/index.html +++ b/src/main/resources/views/platform/zhghh5/staffmanage/member/apply/submit/index.html @@ -288,7 +288,7 @@ layout("/layouts/platform_h5.html"){ -
+
保存 提交 提交 @@ -304,6 +304,8 @@ layout("/layouts/platform_h5.html"){ return { id: GetQueryString("bizId"), taskId: GetQueryString("taskId"), + // 当前登录人已是会员时,不显示保存和提交按钮。 + showActionButtons: true, formData: { families: [] }, @@ -446,6 +448,8 @@ layout("/layouts/platform_h5.html"){ } else { user = this.$store.state.user } + // 页面按钮是否展示,以当前登录人的会员状态为准。 + this.showActionButtons = !(user && user.member) if (this.id) { const res = await this.$axios.post("/platform/member/apply/submit/findApplyById", { id: this.id })