common.select.js
2.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
module.exports={
namespace:"select",
apis:{
selectCheckPassShopsByName:{
title:"查询通过审核店铺列表接口",
url:"/ShopsRest/selectCheckPassShopsByName",
params:[
{name:"idName",type:"String"}
]
},
queryMerchantBrandByShopsId:{
title:"查询店铺下关联品牌",
url:"/MerchantShopsRest/queryMerchantBrandByShopsId"
},
getJitSupplierByBrandId:{
title:"获取JIT店铺",
url:"/AgreementRest/getJitSupplierByBrandId",
params:[
{name:"brandId",type:"String"}
]
},
querySizeListBySortId4Html:{
title:"尺码",
url: '/product/querySizeListBySortId4Html',
params:[
{name:"idName",type:"String"},
{name:"sortId",type:"Number"}
]
},
queryAllMaxSortList:{
title:"顶级类目",
url:"/product/queryAllMaxSortList"
},
queryProductSortList:{
title:"子类目",
url: '/product/queryProductSortList',
params:[
{name:'param',type:'Number'}
]
},
selectCheckPassShopsByName:{
title:"店铺列表",
url: "/ShopsRest/selectCheckPassShopsByName",
params:[
{name:'idName',type:'String'}
]
},
queryMerchantSupplierByShopsId:{
title:'查询店铺下关联供应商',
url:'/MerchantShopsRest/queryMerchantSupplierByShopsId'
},
queryMerchantBrandByShopsId:{
title:'查询店铺下关联品牌',
url:'/MerchantShopsRest/queryMerchantBrandByShopsId'
},
queryMaxSortByName:{
title:"查询一级类目列表接口",
url:'/product/queryMaxSortByName',
params:[
{name:'idName',type:'String'}
]
},
queryShopsByBrandId:{
title:'根据品牌查询店铺',
url: '/ShopsRest/queryShopsByBrandId',
params: [
{name: 'brandId',type: 'number'}
]
}
}
}