人员选择
This commit is contained in:
@@ -116,7 +116,7 @@
|
|||||||
<el-input
|
<el-input
|
||||||
placeholder="请选择入会成员"
|
placeholder="请选择入会成员"
|
||||||
style="width: 50%"
|
style="width: 50%"
|
||||||
@click.native="choiceRole('','请选择入会成员',rh_pageData.comityOpRoleId,)"
|
@click.native="choiceRole(rh_pageData.comityOpRoleId)"
|
||||||
v-model="rh_pageData.comityOpRole"
|
v-model="rh_pageData.comityOpRole"
|
||||||
/>
|
/>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
@@ -342,9 +342,11 @@ export default {
|
|||||||
},
|
},
|
||||||
|
|
||||||
/** 选择入会人员 */
|
/** 选择入会人员 */
|
||||||
choiceRole(type,title,id) {
|
choiceRole() {
|
||||||
this.nodeList = []
|
this.nodeList = []
|
||||||
this.nodeList.push(id)
|
if (this.rh_pageData.comityOpRoleId.length > 0) {
|
||||||
|
this.nodeList = this.rh_pageData.comityOpRoleId.split(',')
|
||||||
|
}
|
||||||
this.roleShowflag = true
|
this.roleShowflag = true
|
||||||
},
|
},
|
||||||
drawerCheck(data) {
|
drawerCheck(data) {
|
||||||
|
|||||||
@@ -112,7 +112,7 @@
|
|||||||
<el-input
|
<el-input
|
||||||
placeholder="请选择参会人员"
|
placeholder="请选择参会人员"
|
||||||
style="width: 50%"
|
style="width: 50%"
|
||||||
@click.native="choiceRole('meetingInRoleId','选择参会人员',ch_pageData.meetingInRoleId,)"
|
@click.native="choiceRole"
|
||||||
v-model="ch_pageData.meetingInRole"
|
v-model="ch_pageData.meetingInRole"
|
||||||
/>
|
/>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
@@ -303,9 +303,11 @@ export default {
|
|||||||
},
|
},
|
||||||
|
|
||||||
/** 选择入会人员 */
|
/** 选择入会人员 */
|
||||||
choiceRole(type,title,id) {
|
choiceRole() {
|
||||||
this.nodeList = []
|
this.nodeList = []
|
||||||
this.nodeList.push(id)
|
if (this.ch_pageData.meetingInRoleId.length > 0) {
|
||||||
|
this.nodeList = this.ch_pageData.meetingInRoleId.split(',')
|
||||||
|
}
|
||||||
this.roleShowflag = true
|
this.roleShowflag = true
|
||||||
},
|
},
|
||||||
drawerCheck(data) {
|
drawerCheck(data) {
|
||||||
|
|||||||
Reference in New Issue
Block a user