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 }) } } })