import { VantComponent } from '../../common/component'; VantComponent({ data: { switchTitle1: '包邮', switchTitle2: '团购', itemTitle: '筛选', option1: [ { text: '全部商品', value: 0 }, { text: '新款商品', value: 1 }, { text: '活动商品', value: 2 }, ], option2: [ { text: '默认排序', value: 'a' }, { text: '好评排序', value: 'b' }, { text: '销量排序', value: 'c' }, ], switch1: true, switch2: false, value1: 0, value2: 'a', }, methods: { onConfirm() { this.selectComponent('#item').toggle(); }, onSwitch1Change({ detail }) { this.setData({ switch1: detail }); }, onSwitch2Change({ detail }) { this.setData({ switch2: detail }); }, onBeforeChange({ detail: { status, callback } }) { wx.showModal({ title: '异步打开/关闭', content: `确定要${status ? '打开' : '关闭'}下拉菜单吗?`, success: (res) => { if (res.confirm) { callback(true); } else if (res.cancel) { callback(false); } }, }); }, }, });