mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
42 lines
948 B
TypeScript
42 lines
948 B
TypeScript
import { VantComponent } from '../../common/component';
|
|
import Toast from '../../toast/toast';
|
|
|
|
VantComponent({
|
|
data: {
|
|
active1: [0],
|
|
active2: 0,
|
|
active3: [],
|
|
active4: [],
|
|
title1: '有赞微商城',
|
|
title2: '有赞零售',
|
|
title3: '有赞美业',
|
|
content1: '提供多样店铺模板,快速搭建网上商城',
|
|
content2:
|
|
'网店吸粉获客、会员分层营销、一机多种收款,告别经营低效和客户流失',
|
|
content3: '线上拓客,随时预约,贴心顺手的开单收银',
|
|
},
|
|
|
|
methods: {
|
|
onChange(event) {
|
|
const { key } = event.currentTarget.dataset;
|
|
this.setData({
|
|
[key]: event.detail,
|
|
});
|
|
},
|
|
|
|
onOpen(event) {
|
|
Toast({
|
|
context: this,
|
|
message: `展开: ${event.detail}`,
|
|
});
|
|
},
|
|
|
|
onClose(event) {
|
|
Toast({
|
|
context: this,
|
|
message: `关闭: ${event.detail}`,
|
|
});
|
|
},
|
|
},
|
|
});
|