Commit 6093fc2d by haowenbo

活动审核页面苏索条件为空时接口不传值

parent 28cbb247
......@@ -164,12 +164,15 @@ export default {
this.imgDialogVisible = true
},
searchphotoList () {
let postObj = {
'p': this.currentPage,
'c': this.pageSize,
}
if(!!this.personIdMdmInput){
this.$set(postObj, "personIdMdm", this.personIdMdmInput);
}
this.$axios.get('/exercise/exerciseActivityApplySubmitList', {
params: {
'p': this.currentPage,
'c': this.pageSize,
personIdMdm: this.personIdMdmInput
}
params: postObj
}).then(res => {
if (res) {
this.totalPage = res.count
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment