You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
698 B
31 lines
698 B
Component({
|
|
data: {
|
|
selectTab: 'branch-activity',
|
|
typeList: [
|
|
{ type: 'branch-activity', name: '支部活动', select: true },
|
|
{ type: 'main-theme', name: '主题党日与“三述”专题', select: false },
|
|
{ type: 'party-training', name: '组织党员培训学习', select: false }
|
|
],
|
|
condition: {
|
|
streetId: '',
|
|
timeId: ''
|
|
}
|
|
},
|
|
methods: {
|
|
onChangeTab (e) {
|
|
this.setData({
|
|
selectTab: e.detail
|
|
})
|
|
},
|
|
chooseStreetId (e: any) {
|
|
this.setData({
|
|
'condition.streetId': e.detail
|
|
})
|
|
},
|
|
chooseTimeId (e: any) {
|
|
this.setData({
|
|
'condition.timeId': e.detail
|
|
})
|
|
}
|
|
}
|
|
})
|