29232
This commit is contained in:
@@ -5,7 +5,7 @@
|
|||||||
<span class="tips">*</span>党员信息
|
<span class="tips">*</span>党员信息
|
||||||
</div>
|
</div>
|
||||||
<div class="value">
|
<div class="value">
|
||||||
<AiPagePicker type="party" @select="handlePartySelect" single>
|
<AiPagePicker type="party" @select="handlePartySelect" single :isFourParty="true">
|
||||||
<AiMore v-model="form.partyName" placeholder="请选择"/>
|
<AiMore v-model="form.partyName" placeholder="请选择"/>
|
||||||
</AiPagePicker>
|
</AiPagePicker>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -57,7 +57,8 @@ export default {
|
|||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
getList() {
|
getList() {
|
||||||
this.$http.post(`/app/appparty/list`, null, {
|
var url = this.$route.query.isFourParty ? 'app/appparty/listByFourParty?size=999' : '/app/appparty/list'
|
||||||
|
this.$http.post(url, null, {
|
||||||
params: {
|
params: {
|
||||||
current: this.current,
|
current: this.current,
|
||||||
size: 20,
|
size: 20,
|
||||||
@@ -66,14 +67,22 @@ export default {
|
|||||||
}
|
}
|
||||||
}).then(res => {
|
}).then(res => {
|
||||||
if (res?.data) {
|
if (res?.data) {
|
||||||
res.data.records.forEach(e => {
|
|
||||||
e.isCheck = this.selected.includes(e.idNumber)
|
|
||||||
})
|
|
||||||
if (this.current > 1 && this.current > res.data.pages) {
|
if (this.current > 1 && this.current > res.data.pages) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
if(this.$route.query.isFourParty) {
|
||||||
|
res.data.forEach(e => {
|
||||||
|
e.isCheck = this.selected.includes(e.idNumber)
|
||||||
|
})
|
||||||
|
this.list = res.data
|
||||||
|
}else {
|
||||||
|
res.data.records.forEach(e => {
|
||||||
|
e.isCheck = this.selected.includes(e.idNumber)
|
||||||
|
})
|
||||||
this.list = this.current > 1 ? [...this.list, ...res.data.records] : res.data.records
|
this.list = this.current > 1 ? [...this.list, ...res.data.records] : res.data.records
|
||||||
}
|
}
|
||||||
|
|
||||||
|
}
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
checkClick(index) {
|
checkClick(index) {
|
||||||
|
|||||||
Reference in New Issue
Block a user