Merge remote-tracking branch 'origin/develop' into develop
This commit is contained in:
@@ -113,7 +113,7 @@
|
|||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="副主任" prop="committeeDeputy" label-width="100px" class="add-form-item">
|
<el-form-item label="副主任" prop="committeeDeputy" label-width="100px" class="add-form-item">
|
||||||
<el-input
|
<el-input
|
||||||
v-model="addForm.committeeDeputy"
|
v-model="addForm.committeeDeputyName"
|
||||||
placeholder="请选择副主任"
|
placeholder="请选择副主任"
|
||||||
@click.native="choiceZRR('committeeDeputy', '选择副主任', addForm.committeeDeputy)"
|
@click.native="choiceZRR('committeeDeputy', '选择副主任', addForm.committeeDeputy)"
|
||||||
/>
|
/>
|
||||||
@@ -148,7 +148,7 @@
|
|||||||
></Role-tree>
|
></Role-tree>
|
||||||
<!-- 多选择人-->
|
<!-- 多选择人-->
|
||||||
<Role-tree
|
<Role-tree
|
||||||
is-title="选择委员"
|
is-title="选择成员"
|
||||||
:is-visible.sync="modalshowflag2"
|
:is-visible.sync="modalshowflag2"
|
||||||
@checkedRole="drawerCheck2"
|
@checkedRole="drawerCheck2"
|
||||||
:nodeList="nodeList2"
|
:nodeList="nodeList2"
|
||||||
@@ -178,6 +178,8 @@ export default {
|
|||||||
committeeName: "", //委员会名称
|
committeeName: "", //委员会名称
|
||||||
committeeDirector: "", //主任
|
committeeDirector: "", //主任
|
||||||
committeeDirectorName: "", //主任
|
committeeDirectorName: "", //主任
|
||||||
|
committeeDeputy: '', // 副主任
|
||||||
|
committeeDeputyName: '', // 副主任
|
||||||
committeeSecretary: "", //秘书长
|
committeeSecretary: "", //秘书长
|
||||||
committeeSecretaryName: "", //秘书长
|
committeeSecretaryName: "", //秘书长
|
||||||
committor: "", //委员
|
committor: "", //委员
|
||||||
@@ -194,7 +196,7 @@ export default {
|
|||||||
{ required: true, message: "请填写秘书长", trigger: "blur" }
|
{ required: true, message: "请填写秘书长", trigger: "blur" }
|
||||||
],
|
],
|
||||||
committor: [
|
committor: [
|
||||||
{ required: true, message: "请填写委员", trigger: "blur" }
|
{ required: true, message: "请填写成员", trigger: "blur" }
|
||||||
]
|
]
|
||||||
|
|
||||||
},
|
},
|
||||||
@@ -241,6 +243,8 @@ export default {
|
|||||||
committeeName: "", //委员会名称
|
committeeName: "", //委员会名称
|
||||||
committeeDirector: "", //主任
|
committeeDirector: "", //主任
|
||||||
committeeDirectorName: "", //主任
|
committeeDirectorName: "", //主任
|
||||||
|
committeeDeputy: '', // 副主任
|
||||||
|
committeeDeputyName: '', // 副主任
|
||||||
committeeSecretary: "", //秘书长
|
committeeSecretary: "", //秘书长
|
||||||
committeeSecretaryName: "", //秘书长
|
committeeSecretaryName: "", //秘书长
|
||||||
committor: "", //委员
|
committor: "", //委员
|
||||||
@@ -266,6 +270,8 @@ export default {
|
|||||||
this.addForm.committeeDirectorName = this.committeeChangeList[0].committeeDirectorName;
|
this.addForm.committeeDirectorName = this.committeeChangeList[0].committeeDirectorName;
|
||||||
this.addForm.committeeSecretary = this.committeeChangeList[0].committeeSecretary;
|
this.addForm.committeeSecretary = this.committeeChangeList[0].committeeSecretary;
|
||||||
this.addForm.committeeSecretaryName = this.committeeChangeList[0].committeeSecretaryName;
|
this.addForm.committeeSecretaryName = this.committeeChangeList[0].committeeSecretaryName;
|
||||||
|
this.addForm.committeeDeputy = this.committeeChangeList[0].committeeDeputy;
|
||||||
|
this.addForm.committeeDeputyName = this.committeeChangeList[0].committeeDeputyName;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
//批量删除
|
//批量删除
|
||||||
@@ -321,6 +327,8 @@ export default {
|
|||||||
committeeName: "", //委员会名称
|
committeeName: "", //委员会名称
|
||||||
committeeDirector: "", //主任
|
committeeDirector: "", //主任
|
||||||
committeeDirectorName: "", //主任
|
committeeDirectorName: "", //主任
|
||||||
|
committeeDeputy: '', // 副主任
|
||||||
|
committeeDeputyName: '', // 副主任
|
||||||
committeeSecretary: "", //秘书长
|
committeeSecretary: "", //秘书长
|
||||||
committeeSecretaryName: "", //秘书长
|
committeeSecretaryName: "", //秘书长
|
||||||
committor: "", //委员
|
committor: "", //委员
|
||||||
@@ -388,6 +396,10 @@ export default {
|
|||||||
} else if (this.type === "committeeSecretary") {
|
} else if (this.type === "committeeSecretary") {
|
||||||
this.addForm.committeeSecretary = data[0].id;
|
this.addForm.committeeSecretary = data[0].id;
|
||||||
this.addForm.committeeSecretaryName = data[0].name;
|
this.addForm.committeeSecretaryName = data[0].name;
|
||||||
|
}else if (this.type === "committeeDeputy") {
|
||||||
|
console.log('data = ', data)
|
||||||
|
this.addForm.committeeDeputy = data[0].id;
|
||||||
|
this.addForm.committeeDeputyName = data[0].name;
|
||||||
}
|
}
|
||||||
this.modalshowflag = false;
|
this.modalshowflag = false;
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -557,7 +557,7 @@
|
|||||||
暂无数据
|
暂无数据
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div style="height: 100%" v-else-if="activeType === 'FOREIGN'">
|
<div style="height: 100%" v-else-if="activeType === 'INLAND'">
|
||||||
<el-tabs
|
<el-tabs
|
||||||
class="question-box"
|
class="question-box"
|
||||||
type="border-card"
|
type="border-card"
|
||||||
|
|||||||
@@ -1367,7 +1367,7 @@ export default {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
return this.$message.warning("请完善基础信息");
|
return this.$message.warning("请选择清单");
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user