Commit 74859020 authored by GuanHua's avatar GuanHua

feat: app渠道装修页面开发

parent 6e07d806
...@@ -18,7 +18,7 @@ interface DataItemType { ...@@ -18,7 +18,7 @@ interface DataItemType {
id: number, id: number,
name: string, name: string,
icon: string, icon: string,
/** 类型:1-首页 2-分类 3-进货单 4-工作台 5-我的 6-找现货 7-找供应 8-求购 9-换积分 10-找店铺 */ /** 类型:1-首页 2-积分 3-工作台 4-资讯 5-进货单 6-我的 */
type: number, type: number,
status: boolean, status: boolean,
expand: boolean expand: boolean
...@@ -35,39 +35,23 @@ const RedirectTypeList = [ ...@@ -35,39 +35,23 @@ const RedirectTypeList = [
}, },
{ {
value: 2, value: 2,
label: '分类', label: '积分',
}, },
{ {
value: 3, value: 3,
label: '进货单', label: '工作台',
}, },
{ {
value: 4, value: 4,
label: '工作台', label: '资讯',
}, },
{ {
value: 5, value: 5,
label: '我的', label: '进货单',
}, },
{ {
value: 6, value: 6,
label: '找现货', label: '我的',
},
{
value: 7,
label: '找供应',
},
{
value: 8,
label: '求购',
},
{
value: 9,
label: '换积分',
},
{
value: 10,
label: '找店铺',
}, },
] ]
......
...@@ -261,9 +261,13 @@ const ChannelGoods: React.FC<QualityPropsType> = (props) => { ...@@ -261,9 +261,13 @@ const ChannelGoods: React.FC<QualityPropsType> = (props) => {
const params: any = { const params: any = {
...param, ...param,
priceTypeList: [1], priceTypeList: [1],
idNotInList: currentInfo.productIdList,
channelMemberId, channelMemberId,
} }
if(currentInfo.productIdList && currentInfo.productIdList.length > 0) {
params.idNotInList = currentInfo.productIdList
}
const headers = { const headers = {
"type": "3" "type": "3"
} }
......
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