mirror of
https://gitee.com/beecue/fastbee.git
synced 2025-12-18 00:45:55 +08:00
智慧宿舍系统小程序
This commit is contained in:
34
wechat/miniprogram/node_modules/@vant/weapp/dist/sidebar/index.js
generated
vendored
Normal file
34
wechat/miniprogram/node_modules/@vant/weapp/dist/sidebar/index.js
generated
vendored
Normal file
@@ -0,0 +1,34 @@
|
||||
import { VantComponent } from '../common/component';
|
||||
import { useChildren } from '../common/relation';
|
||||
VantComponent({
|
||||
relation: useChildren('sidebar-item', function () {
|
||||
this.setActive(this.data.activeKey);
|
||||
}),
|
||||
props: {
|
||||
activeKey: {
|
||||
type: Number,
|
||||
value: 0,
|
||||
observer: 'setActive',
|
||||
},
|
||||
},
|
||||
beforeCreate() {
|
||||
this.currentActive = -1;
|
||||
},
|
||||
methods: {
|
||||
setActive(activeKey) {
|
||||
const { children, currentActive } = this;
|
||||
if (!children.length) {
|
||||
return Promise.resolve();
|
||||
}
|
||||
this.currentActive = activeKey;
|
||||
const stack = [];
|
||||
if (currentActive !== activeKey && children[currentActive]) {
|
||||
stack.push(children[currentActive].setActive(false));
|
||||
}
|
||||
if (children[activeKey]) {
|
||||
stack.push(children[activeKey].setActive(true));
|
||||
}
|
||||
return Promise.all(stack);
|
||||
},
|
||||
},
|
||||
});
|
||||
Reference in New Issue
Block a user