This commit is contained in:
wanglei
2022-02-11 15:23:05 +08:00
parent ade4d27aa2
commit ab82208335
3 changed files with 28 additions and 17 deletions

View File

@@ -141,7 +141,8 @@ export default {
current: this.current,
searchType: this.currentTabs == 1 ? '1' : '0',
eventStatus: this.eventStatus,
girdId: this.girdId
girdId: this.girdId,
openId:this.eventStatus== 4 ? this.user.openId : ""
},
})
.then((res) => {
@@ -171,9 +172,13 @@ export default {
},
// 切换类型
changeType(e) {
this.status = e[0].label
if(e[0].value!=1){
this.status = e[0].label
this.eventStatus = e[0].value
}else{
this.eventStatus = 4
}
this.datas = []
this.eventStatus = e[0].value
this.getList()
},