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
Email Patches
Plain Diff
Browse Files
Authored by
陈轩
9 years ago
Commit
6a552817516bbf9b401d2cf2ea0195619b1b5549
1 parent
d11ca0d3
fix filter in order
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
8 deletions
public/vue/component/product/filter.vue
utils/beautify/product.js
public/vue/component/product/filter.vue
View file @
6a55281
...
...
@@ -7,10 +7,14 @@
</div>
<div class="filter-params">
<ul class="filter-cates">
<li class="filter-cate" v-for="classify in config" v-if="showCate($key, classify)" @click="entrySub($key)">
<li class="filter-cate"
v-for="classify in itemArr"
v-if="config[classify] && showCate(classify, config[classify])"
@click="entrySub(classify)"
>
<i class="icon icon-right right"></i>
<span class="filter-cate-label">{{$key | filter-en-cn }}</span>
<span class="filter-cate-val">{{showLabel($key)}}</span>
<span class="filter-cate-label">{{classify | filter-en-cn }}</span>
<span class="filter-cate-val">{{showLabel(classify)}}</span>
</li>
</ul>
</div>
...
...
@@ -39,11 +43,9 @@
},
data: function() {
return {
// 选择的值
params: {},
// 确定的值
selected: {},
itemArr: ['gender', 'ageLevel', 'brand', 'groupSort', 'color', 'size', 'priceRange', 'discount','style'],
params: {}, // 选择的值
selected: {}, // 确定的值
subType: ''
};
...
...
utils/beautify/product.js
View file @
6a55281
...
...
@@ -35,6 +35,10 @@ const _procProductImg = (product, genderVal) => {
module
.
exports
=
(
list
,
options
)
=>
{
const
pruductList
=
[];
if
(
!
options
.
gender
)
{
options
.
gender
=
''
;
}
options
=
Object
.
assign
({
showTags
:
true
,
showNew
:
true
,
...
...
Please
register
or
login
to post a comment