diff --git a/src/main/resources/views/platform/zhgh/club/register/apply/clubRegisterManager.js b/src/main/resources/views/platform/zhgh/club/register/apply/clubRegisterManager.js
index 136182b8..524e47f5 100644
--- a/src/main/resources/views/platform/zhgh/club/register/apply/clubRegisterManager.js
+++ b/src/main/resources/views/platform/zhgh/club/register/apply/clubRegisterManager.js
@@ -4,15 +4,15 @@ const CLUB_MANAGER_TEMPLATE = {
必填
+ v-if="scope.row.roleCode === 'CLUB_PRESIDENT'
+ || scope.row.roleCode === 'CLUB_SECRETARY'">必填
非必填
{roleCodeChange(val, scope.row, scope.$index)}"
- placeholder="请选择职务" v-model="scope.row.roleCode" multiple>
+ placeholder="请选择职务" v-model="scope.row.roleCode">
@@ -102,6 +102,7 @@ const CLUB_MANAGER_TEMPLATE = {
roleCodeChange(val, row, index) {
const cloneData = clone(this.managePerson)
cloneData.splice(index, 1)
+ debugger
const u = cloneData.find((o) => o.userId && o.userId === row.userId && o.roleCode === val)
if (u) {
this.$message.warning("理事机构不能重复")