Commit d2eb541f authored by GuanHua's avatar GuanHua

fix: 渠道积分商品列表参数问题

parent 874472a6
...@@ -35,7 +35,7 @@ interface FilterQuery { ...@@ -35,7 +35,7 @@ interface FilterQuery {
customerAttributeList?: any; customerAttributeList?: any;
Min?: number; Min?: number;
Max?: number; Max?: number;
priceType?: number; priceTypeList?: number[];
storeId?: number; storeId?: number;
channelMemberId?: number; channelMemberId?: number;
...@@ -90,7 +90,7 @@ const PointsMall: React.FC<CommodityPropsType> = (props) => { ...@@ -90,7 +90,7 @@ const PointsMall: React.FC<CommodityPropsType> = (props) => {
type: 5 type: 5
} }
param.channelMemberId = memberId param.channelMemberId = memberId
param.priceType = 3 param.priceTypeList = [3]
getFn = PublicApi.postSearchShopChannelGetCommodityList getFn = PublicApi.postSearchShopChannelGetCommodityList
break break
case LAYOUT_TYPE.shop: case LAYOUT_TYPE.shop:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment