mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
51 lines
1.2 KiB
TypeScript
51 lines
1.2 KiB
TypeScript
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);
|
|
}
|
|
},
|
|
});
|
|
},
|
|
},
|
|
});
|