+
保存
提交
提交
@@ -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 })