Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mayi-mp-shop
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
程默
mayi-mp-shop
Commits
fe0771ab
Commit
fe0771ab
authored
Sep 20, 2022
by
李嘉林
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
属性筛选
parent
f3e0b049
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
148 additions
and
2 deletions
+148
-2
src/api/goods.js
+4
-0
src/components/common/GoodsFliters.vue
+139
-1
static/nativeComponents/GoodsList/index.js
+4
-0
static/nativeComponents/GoodsList/index.wxml
+1
-1
No files found.
src/api/goods.js
View file @
fe0771ab
...
@@ -22,4 +22,8 @@ export default {
...
@@ -22,4 +22,8 @@ export default {
getProductTopCategory
(
data
)
{
getProductTopCategory
(
data
)
{
return
requestPOST
(
`
${
process
.
env
.
OLSHOP_URL
}
/product/get_product_top_category`
,
data
)
return
requestPOST
(
`
${
process
.
env
.
OLSHOP_URL
}
/product/get_product_top_category`
,
data
)
},
},
//查询商品属性
query_product_attribute_values_list
(
data
)
{
return
requestPOST
(
`
${
process
.
env
.
OLSHOP_URL
}
/product/query_product_attribute_values_list`
,
data
)
},
};
};
src/components/common/GoodsFliters.vue
View file @
fe0771ab
...
@@ -259,6 +259,87 @@
...
@@ -259,6 +259,87 @@
</div>
</div>
</div>
</div>
</div>
</div>
<!-- 属性 -->
<div
class=
"list clearfix brand-wrap"
v-for=
"(ele, index) in attributeList"
:key=
"index"
v-show=
"ele.specificationValueList && ele.specificationValueList.length"
>
<div
class=
"tit"
>
<div
class=
"tit-title"
>
{{ ele.attributeName }}
</div>
</div>
<div
class=
"brand-list"
>
<div
v-if=
"ele.specificationValueList &&ele.specificationValueList.length <= 9"
>
<div
class=
"brand-item"
v-for=
"(item,index1) in ele.specificationValueList"
:key=
"index1"
>
<div
class=
"brand-item-text line-clamp1"
@
click=
"selectAttributeValue(item)"
:class=
"item.selectFlag? 'brand-active': ''"
>
{{ item.attributeValue }}
<img
src=
"http://mayi-newshop.oss-cn-shanghai.aliyuncs.com/public/png/46876f6b-08f7-4632-84f5-1ebf0a942786.png"
v-if=
"item.selectFlag"
/>
</div>
</div>
</div>
<div
v-if=
"ele.specificationValueList &&ele.specificationValueList.length > 9"
>
<div
class=
"brand-item"
v-for=
"(item,index2) in ele.specificationValueList1"
:key=
"index2"
>
<div
class=
"brand-item-text line-clamp1"
:class=
"item.selectFlag? 'brand-active': ''"
@
click=
"selectAttributeValue(item)"
>
{{ item.attributeValue }}
<img
src=
"http://mayi-newshop.oss-cn-shanghai.aliyuncs.com/public/png/46876f6b-08f7-4632-84f5-1ebf0a942786.png"
v-if=
"item.selectFlag"
/>
</div>
</div>
<div
v-if=
"ele.brandMore"
>
<div
class=
"brand-item"
v-for=
"(item,index3) in ele.specificationValueList2"
:key=
"index3"
>
<div
class=
"brand-item-text line-clamp1"
:class=
"item.selectFlag? 'brand-active': ''"
@
click=
"selectAttributeValue(item)"
>
{{ item.attributeValue }}
<img
src=
"http://mayi-newshop.oss-cn-shanghai.aliyuncs.com/public/png/46876f6b-08f7-4632-84f5-1ebf0a942786.png"
v-if=
"item.selectFlag"
/>
</div>
</div>
</div>
<div
class=
"more"
v-if=
"ele.specificationValueList.length > 9 && !ele.brandMore"
@
click=
"ele.brandMore = true"
>
查看更多
<van-icon
name=
"arrow"
color=
"#000"
size=
"14"
/>
</div>
</div>
</div>
</div>
</div>
</div>
<div
class=
"fliterBtn van-hairline--top"
>
<div
class=
"fliterBtn van-hairline--top"
>
<div
class=
"btns"
>
<div
class=
"btns"
>
...
@@ -287,6 +368,7 @@ export default {
...
@@ -287,6 +368,7 @@ export default {
brandActiveNameList
:
[],
brandActiveNameList
:
[],
goodsSpecificationIds
:
[],
goodsSpecificationIds
:
[],
categoryIdList
:
[],
categoryIdList
:
[],
productAttributeIds
:
[],
},
},
categoryId
:
""
,
categoryId
:
""
,
GoodsSpecificationNameAndValuesListResponseDTO
:
[],
GoodsSpecificationNameAndValuesListResponseDTO
:
[],
...
@@ -300,6 +382,7 @@ export default {
...
@@ -300,6 +382,7 @@ export default {
categoryList2
:
[],
//查看更多分类
categoryList2
:
[],
//查看更多分类
categoryMore
:
false
,
// 查看更多分类
categoryMore
:
false
,
// 查看更多分类
sourceType
:
0
,
// 来源类型 0商品搜索页打开 1商品列表组件打开
sourceType
:
0
,
// 来源类型 0商品搜索页打开 1商品列表组件打开
attributeList
:
[],
//属性列表
};
};
},
},
components
:
{},
components
:
{},
...
@@ -353,6 +436,8 @@ export default {
...
@@ -353,6 +436,8 @@ export default {
if
(
this
.
sourceType
==
1
)
{
if
(
this
.
sourceType
==
1
)
{
this
.
getProductTopCategory
();
this
.
getProductTopCategory
();
}
}
// 查询商品属性
this
.
query_product_attribute_values_list
();
this
.
show
=
true
;
this
.
show
=
true
;
},
},
close
()
{
close
()
{
...
@@ -383,6 +468,34 @@ export default {
...
@@ -383,6 +468,34 @@ export default {
}
}
});
});
},
},
query_product_attribute_values_list
()
{
let
query
=
{
filterFieldsShowFlag
:
1
,
}
goodsApi
.
query_product_attribute_values_list
(
query
).
then
(
res
=>
{
if
(
res
.
data
.
code
==
"200"
&&
res
.
data
.
data
&&
res
.
data
.
data
.
length
){
this
.
attributeList
=
res
.
data
.
data
||
[];
this
.
attributeList
.
forEach
(
(
ele
)
=>
{
this
.
$set
(
ele
,
"brandMore"
,
false
);
if
(
ele
.
specificationValueList
)
{
ele
.
specificationValueList
.
forEach
((
val
)
=>
{
val
.
selectFlag
=
false
;
this
.
$set
(
val
,
"id"
,
val
.
attributeValueIds
[
0
]);
this
.
$set
(
val
,
"ids"
,
val
.
attributeValueIds
);
if
(
this
.
submitFliterVal
.
productAttributeIds
.
includes
(
val
.
id
))
{
val
.
selectFlag
=
true
;
}
});
}
ele
.
specificationValueList1
=
ele
.
specificationValueList
.
slice
(
0
,
8
);
ele
.
specificationValueList2
=
ele
.
specificationValueList
.
slice
(
8
);
}
);
console
.
log
(
this
.
attributeList
,
'--this.attributeList'
)
}
})
},
getProductBrand
()
{
getProductBrand
()
{
goodsApi
.
queryProductBrand
({
goodsApi
.
queryProductBrand
({
page
:
1
,
page
:
1
,
...
@@ -455,6 +568,20 @@ export default {
...
@@ -455,6 +568,20 @@ export default {
}
}
});
});
},
},
selectAttributeValue
(
item
)
{
item
.
ids
.
forEach
((
id
)
=>
{
if
(
!
this
.
submitFliterVal
.
productAttributeIds
.
includes
(
id
))
{
this
.
submitFliterVal
.
productAttributeIds
.
push
(
id
);
item
.
selectFlag
=
true
;
}
else
{
this
.
submitFliterVal
.
productAttributeIds
.
splice
(
this
.
submitFliterVal
.
productAttributeIds
.
indexOf
(
id
),
1
);
item
.
selectFlag
=
false
;
}
});
},
selectBrand
(
item
)
{
selectBrand
(
item
)
{
console
.
log
(
item
,
"----------------------1531"
);
console
.
log
(
item
,
"----------------------1531"
);
console
.
log
(
console
.
log
(
...
@@ -503,6 +630,7 @@ export default {
...
@@ -503,6 +630,7 @@ export default {
this
.
submitFliterVal
.
brandIdList
=
[];
this
.
submitFliterVal
.
brandIdList
=
[];
this
.
submitFliterVal
.
brandActiveNameList
=
[];
this
.
submitFliterVal
.
brandActiveNameList
=
[];
this
.
submitFliterVal
.
categoryIdList
=
[];
this
.
submitFliterVal
.
categoryIdList
=
[];
this
.
submitFliterVal
.
goodsSpecificationIds
=
[];
this
.
brandList
.
forEach
(
item
=>
{
this
.
brandList
.
forEach
(
item
=>
{
item
.
selectFlag
=
false
;
item
.
selectFlag
=
false
;
});
});
...
@@ -520,7 +648,17 @@ export default {
...
@@ -520,7 +648,17 @@ export default {
ele
.
specificationValueList2
=
ele
.
specificationValueList
.
slice
(
8
);
ele
.
specificationValueList2
=
ele
.
specificationValueList
.
slice
(
8
);
}
}
);
);
this
.
submitFliterVal
.
goodsSpecificationIds
=
[];
this
.
attributeList
.
forEach
(
(
ele
)
=>
{
if
(
ele
.
specificationValueList
)
{
ele
.
specificationValueList
.
forEach
((
val
)
=>
{
val
.
selectFlag
=
false
;
});
}
ele
.
specificationValueList1
=
ele
.
specificationValueList
.
slice
(
0
,
8
);
ele
.
specificationValueList2
=
ele
.
specificationValueList
.
slice
(
8
);
}
);
console
.
log
(
this
.
submitFliterVal
,
'--------重置'
)
console
.
log
(
this
.
submitFliterVal
,
'--------重置'
)
},
},
// 提交筛选
// 提交筛选
...
...
static/nativeComponents/GoodsList/index.js
View file @
fe0771ab
...
@@ -63,6 +63,7 @@ const componentOptions = {
...
@@ -63,6 +63,7 @@ const componentOptions = {
brandActiveNameList
:
[],
brandActiveNameList
:
[],
goodsSpecificationIds
:
[],
goodsSpecificationIds
:
[],
categoryIdList
:
[],
categoryIdList
:
[],
productAttributeIds
:
[],
},
},
randomNumber
:
""
,
randomNumber
:
""
,
selectScreen
:
false
,
// 筛选选中状态
selectScreen
:
false
,
// 筛选选中状态
...
@@ -92,6 +93,7 @@ const componentOptions = {
...
@@ -92,6 +93,7 @@ const componentOptions = {
||
val
.
submitFliterVal
.
brandActiveNameList
.
length
>
0
||
val
.
submitFliterVal
.
brandActiveNameList
.
length
>
0
||
val
.
submitFliterVal
.
goodsSpecificationIds
.
length
>
0
||
val
.
submitFliterVal
.
goodsSpecificationIds
.
length
>
0
||
val
.
submitFliterVal
.
categoryIdList
.
length
>
0
||
val
.
submitFliterVal
.
categoryIdList
.
length
>
0
||
val
.
submitFliterVal
.
productAttributeIds
.
length
>
0
_this
.
setData
({
_this
.
setData
({
submitFliterVal
:
val
.
submitFliterVal
,
submitFliterVal
:
val
.
submitFliterVal
,
selectScreen
,
selectScreen
,
...
@@ -276,6 +278,8 @@ const componentOptions = {
...
@@ -276,6 +278,8 @@ const componentOptions = {
query
.
sortColumn
=
this
.
data
.
filterType
==
-
1
?
""
:
this
.
data
.
filterType
query
.
sortColumn
=
this
.
data
.
filterType
==
-
1
?
""
:
this
.
data
.
filterType
query
.
sortType
=
this
.
data
.
filterType
==
2
?
this
.
data
.
filterPriceType
:
""
;
query
.
sortType
=
this
.
data
.
filterType
==
2
?
this
.
data
.
filterPriceType
:
""
;
query
.
goodsSpecificationIds
=
this
.
data
.
submitFliterVal
.
goodsSpecificationIds
;
query
.
goodsSpecificationIds
=
this
.
data
.
submitFliterVal
.
goodsSpecificationIds
;
query
.
categoryIdList
=
this
.
data
.
submitFliterVal
.
categoryIdList
;
query
.
productAttributeIds
=
this
.
data
.
submitFliterVal
.
productAttributeIds
;
query
.
minPrice
=
this
.
data
.
submitFliterVal
.
minPrice
;
query
.
minPrice
=
this
.
data
.
submitFliterVal
.
minPrice
;
query
.
maxPrice
=
this
.
data
.
submitFliterVal
.
maxPrice
;
query
.
maxPrice
=
this
.
data
.
submitFliterVal
.
maxPrice
;
}
}
...
...
static/nativeComponents/GoodsList/index.wxml
View file @
fe0771ab
...
@@ -149,7 +149,7 @@
...
@@ -149,7 +149,7 @@
<view class="goods-heap-Item" wx:if="{{datas.componentData.style==='heap'}}">
<view class="goods-heap-Item" wx:if="{{datas.componentData.style==='heap'}}">
<heap-item datas="{{datas}}"></heap-item>
<heap-item datas="{{datas}}"></heap-item>
</view>
</view>
<view class="noGoods" wx:if="{{datas.componentData.goodsList.length == 0 && datas.componentData.filterComponentsFlag && !loading}}">
<view class="noGoods" wx:if="{{datas.componentData.goodsList.length == 0 && datas.componentData.filterComponentsFlag && !loading
&& datas.componentData.style != 'rowList'
}}">
<image mode="widthFix" src="https://cdn.mayi888.com/static/img/empty-goods.png"></image>
<image mode="widthFix" src="https://cdn.mayi888.com/static/img/empty-goods.png"></image>
没有找到商品
没有找到商品
</view>
</view>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment