1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
| <template>
| <uni-shadow-root class="vant-sidebar-item-index"><view :class="(utils.bem('sidebar-item', { selected, disabled }))+' '+(selected ? 'active-class' : '')+' '+(disabled ? 'disabled-class' : '')+' custom-class'" hover-class="van-sidebar-item--hover" hover-stay-time="70" @click="onClick">
| <view class="van-sidebar-item__text">
| <van-info v-if="info !== null || dot" :dot="dot" :info="info" custom-style="right: 4px"></van-info>
| <view v-if="title">{{ title }}</view>
| <slot v-else name="title"></slot>
| </view>
| </view></uni-shadow-root>
| </template>
| <wxs src="../wxs/utils.wxs" module="utils"></wxs>
| <script>
| import VanInfo from '../info/index.vue'
| global['__wxVueOptions'] = {components:{'van-info': VanInfo}}
|
| global['__wxRoute'] = 'vant/sidebar-item/index'
| import { VantComponent } from '../common/component';
| VantComponent({
| classes: ['active-class', 'disabled-class'],
| relation: {
| type: 'ancestor',
| name: 'sidebar',
| current: 'sidebar-item',
| },
| props: {
| dot: Boolean,
| info: null,
| title: String,
| disabled: Boolean,
| },
| methods: {
| onClick() {
| const { parent } = this;
| if (!parent || this.data.disabled) {
| return;
| }
| const index = parent.children.indexOf(this);
| parent.setActive(index).then(() => {
| this.$emit('click', index);
| parent.$emit('change', index);
| });
| },
| setActive(selected) {
| return this.setData({ selected });
| },
| },
| });
| export default global['__wxComponents']['vant/sidebar-item/index']
| </script>
| <style platform="mp-weixin">
| @import '../common/index.css';.van-sidebar-item{display:block;box-sizing:border-box;overflow:hidden;word-wrap:break-word;border-left:3px solid transparent;-webkit-user-select:none;user-select:none;padding:20px 12px 20px 8px;padding:var(--sidebar-padding,20px 12px 20px 8px);font-size:14px;font-size:var(--sidebar-font-size,14px);line-height:20px;line-height:var(--sidebar-line-height,20px);color:#323233;color:var(--sidebar-text-color,#323233);background-color:#f7f8fa;background-color:var(--sidebar-background-color,#f7f8fa)}.van-sidebar-item__text{position:relative;display:inline-block}.van-sidebar-item--hover:not(.van-sidebar-item--disabled){background-color:#f2f3f5;background-color:var(--sidebar-active-color,#f2f3f5)}.van-sidebar-item:after{border-bottom-width:1px}.van-sidebar-item--selected{color:#323233;color:var(--sidebar-selected-text-color,#323233);font-weight:500;font-weight:var(--sidebar-selected-font-weight,500);border-color:#F6465D;border-color:var(--sidebar-selected-border-color,#F6465D)}.van-sidebar-item--selected:after{border-right-width:1px}.van-sidebar-item--selected,.van-sidebar-item--selected.van-sidebar-item--hover{background-color:#fff;background-color:var(--sidebar-selected-background-color,#fff)}.van-sidebar-item--disabled{color:#c8c9cc;color:var(--sidebar-disabled-text-color,#c8c9cc)}
| </style>
|
|