This commit is contained in:
yanran200730
2022-10-17 18:03:10 +08:00
2 changed files with 10 additions and 8 deletions

View File

@@ -85,7 +85,7 @@
</el-row> </el-row>
<el-form-item label="候选人" prop="candidateUsers"> <el-form-item label="候选人" prop="candidateUsers">
<ai-person-select :instance="instance" :customClicker="true" :chooseUserList="chooseUserList" <ai-person-select :instance="instance" :customClicker="true" :chooseUserList="chooseCandidateList"
url="/app/appgirdmemberinfo/list" headerTitle="党员列表" url="/app/appgirdmemberinfo/list" headerTitle="党员列表"
:isMultiple="true" dialogTitle="选择" @selectPerson="selectCandidate" class="aipersonselect"> :isMultiple="true" dialogTitle="选择" @selectPerson="selectCandidate" class="aipersonselect">
<template name="option" v-slot:option="{ item }"> <template name="option" v-slot:option="{ item }">
@@ -97,7 +97,7 @@
</el-form-item> </el-form-item>
<el-form-item label="投票人" prop="voteUsers"> <el-form-item label="投票人" prop="voteUsers">
<ai-person-select :instance="instance" :customClicker="true" :chooseUserList="chooseUserList" <ai-person-select :instance="instance" :customClicker="true" :chooseUserList="chooseVoteList"
url="/app/appgirdmemberinfo/list" headerTitle="党员列表" url="/app/appgirdmemberinfo/list" headerTitle="党员列表"
:isMultiple="true" dialogTitle="选择" @selectPerson="selectVote" class="aipersonselect"> :isMultiple="true" dialogTitle="选择" @selectPerson="selectVote" class="aipersonselect">
<template name="option" v-slot:option="{ item }"> <template name="option" v-slot:option="{ item }">
@@ -156,7 +156,6 @@ export default {
voteUsers: [], voteUsers: [],
partyOrganizations: [] partyOrganizations: []
}, },
chooseUserList: [],
formRules: { formRules: {
title: [{required: true, message: "请输入标题", trigger: "blur"}], title: [{required: true, message: "请输入标题", trigger: "blur"}],
organizationName: [{required: true, message: "请选择党组织", trigger: "blur"}], organizationName: [{required: true, message: "请选择党组织", trigger: "blur"}],
@@ -171,6 +170,8 @@ export default {
info: {}, info: {},
candidateUsersList: '', candidateUsersList: '',
voteUsersList: '', voteUsersList: '',
chooseCandidateList: [],
chooseVoteList: [],
} }
}, },
computed: { computed: {
@@ -194,12 +195,13 @@ export default {
params: {id:this.id} params: {id:this.id}
}).then((res) => { }).then((res) => {
if(res?.data) { if(res?.data) {
console.log(res.data,'getDetail');
this.form = res.data this.form = res.data
this.form.organizationName = res.data.partyOrganizations[0].name this.form.organizationName = res.data.partyOrganizations[0].name
this.info = res.data this.info = res.data
this.candidateUsersList = res.data.candidateUsers.map(v=> v.name) this.candidateUsersList = res.data.candidateUsers.map(v=> v.name)
this.voteUsersList = res.data.voteUsers.map(v=> v.name) this.voteUsersList = res.data.voteUsers.map(v=> v.name)
this.chooseCandidateList = res.data.candidateUsers
this.chooseVoteList = res.data.voteUsers
} }
}) })
}, },
@@ -211,10 +213,10 @@ export default {
}, },
handlePartyOrgSelect(v) { handlePartyOrgSelect(v) {
if(v) { if(v) {
this.form.organizationName = v[0].name this.form.organizationName = v[0]?.name
this.form.partyOrganizations = [v[0]] this.form.partyOrganizations = [v[0]]
} else { } else {
this.form.organizationName = this.chooseUserList[0].name this.form.organizationName = this.chooseUserList[0]?.name
this.form.partyOrganizations = this.chooseUserList this.form.partyOrganizations = this.chooseUserList
} }
}, },

View File

@@ -9,9 +9,9 @@
<ai-select v-model="search.status" @change=";(page.current = 1), getList()" placeholder="请选择状态" :selectList="dict.getDict('electionStatus')"></ai-select> <ai-select v-model="search.status" @change=";(page.current = 1), getList()" placeholder="请选择状态" :selectList="dict.getDict('electionStatus')"></ai-select>
</template> </template>
<template #right> <template #right>
<el-input v-model="search.title" class="search-input" size="small" v-throttle="() => { ;(page.current = 1), getList() } " placeholder="标题" clearable @change="getList" @clear="page.current = 1, (search.title = ''), getList()" suffix-icon="iconfont iconSearch"> <el-input v-model="search.title" class="search-input" size="small" v-throttle="() => {(page.current = 1), getList()} " placeholder="标题" clearable @change="getList" @clear="page.current = 1, (search.title = ''), getList()" suffix-icon="iconfont iconSearch">
</el-input> </el-input>
<el-button size="small" type="primary" icon="el-icon-refresh-right" @click="reset" >重置</el-button> <el-button size="small" type="primary" icon="el-icon-refresh-right" @click="reset">重置</el-button>
</template> </template>
</ai-search-bar> </ai-search-bar>
<ai-table :tableData="tableData" :total="page.total" :current.sync="page.current" :size.sync="page.size" @getList="getList" :col-configs="colConfigs" :dict="dict"> <ai-table :tableData="tableData" :total="page.total" :current.sync="page.current" :size.sync="page.size" @getList="getList" :col-configs="colConfigs" :dict="dict">