Toggle navigation
Toggle navigation
This project
Loading...
Sign in
fe
/
yohoblk-wap
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
0
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Plain Diff
Browse Files
Authored by
陈峰
8 years ago
Commit
ecdf4c57f945dbb64623a14f8a7729bf28cb77e6
2 parents
3359b70f
5e74a3e6
Merge branch 'gray' into 'master'
品牌字母索引bug See merge request
!40
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
10 deletions
public/vue/component/product/filter/brand.vue
public/vue/component/product/filter/brand.vue
View file @
ecdf4c5
<template>
<div class="filter-sub-detail">
<dl v-for="item in indexData" :key="item.index">
<dt class="index" :id="item.index">{{item.index}}</dt>
<dd class="item" v-for="brand in currentData[item.index]" :key="brand.id" :class="{'active': brand.checked}" @click="select(brand)">
<div class="item-inner">{{brand.name}}</div>
<div class="item-check">
<i class="icon icon-check"></i>
</div>
</dd>
</dl>
<div class="filter-sub-detail-content">
<div class="filter-sub-detail">
<dl v-for="item in indexData" :key="item.index">
<dt class="index" :id="item.index">{{item.index}}</dt>
<dd class="item" v-for="brand in currentData[item.index]" :key="brand.id" :class="{'active': brand.checked}" @click="select(brand)">
<div class="item-inner">{{brand.name}}</div>
<div class="item-check">
<i class="icon icon-check"></i>
</div>
</dd>
</dl>
</div>
<index-list class="filter-index-list" :index-list="indexData" @loc-index="locIndex"></index-list>
</div>
</template>
...
...
@@ -113,6 +115,11 @@
top: 50%!important;
transform: translateY(-50%);
}
.filter-sub-detail-content {
position: absolute;
height: 100%;
width: 100%;
}
</style>
...
...
Please
register
or
login
to post a comment