mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
21 lines
403 B
JavaScript
21 lines
403 B
JavaScript
import Page from '../../common/page';
|
|
|
|
Page({
|
|
data: {
|
|
active: 0,
|
|
active2: 'home',
|
|
active3: 0,
|
|
active4: 0,
|
|
active5: 0,
|
|
icon: {
|
|
normal: 'https://img.yzcdn.cn/vant/user-inactive.png',
|
|
active: 'https://img.yzcdn.cn/vant/user-active.png'
|
|
}
|
|
},
|
|
|
|
onChange(event) {
|
|
const { key } = event.currentTarget.dataset;
|
|
this.setData({ [key]: event.detail });
|
|
}
|
|
});
|