Browse Source

选民登记管理功能所属小组根据所属选区联动

master
liuchuang 4 years ago
parent
commit
6b392e284f
  1. 3
      src/views/modules/custom/voterregistration.vue

3
src/views/modules/custom/voterregistration.vue

@ -163,6 +163,8 @@ export default {
}).catch(() => {})
},
getGroupList (code) {
this.groupList = []
this.dataForm.groupCode = ''
let pid = ''
this.constituencyList.find((item) => {
if (item.configCode === code) {
@ -170,7 +172,6 @@ export default {
}
})
if (pid === '') {
this.groupList = []
return
}
this.$http.get(`/custom/voterregistrationconfig/getConfigByType`, { params: { configType: '', pid: pid } }).then(({ data: res }) => {

Loading…
Cancel
Save