common.select.js
2.68 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
module.exports=function(app) {
/**/
app.post("/supplier/supplier/getSupplierListByIdName","select_getSupplierListByIdName");
/**/
app.post("/erpproduct/brands/getBrandNames","select_getBrandNames");
app.post("/supplier/storeadmin/managerName","select_getUsersByIdentity");
/**/
// app.post("/ShopsAdminRest/getUsersByIdentity","select_getUsersByIdentity");
/**/
app.post("/product/querySizeAttributesByName","select_querySizeAttributesByName");
app.post("/product/querySizeListBySortId4Html","select_querySizeListBySortId4Html");
/*尺码模糊查询【验证通过】*/
app.post("/product/querySizeByNameForSelect","select_querySizeByNameForSelect");
/*查询品牌列表接口*/
app.post("/erpproduct/brands/queryAllBrands", "select_queryAllBrands");
/*查询供应商列表接口*/
app.post("/supplier/supplier/queryAllSupplier","select_queryAllSupplier");
/*查询一级类目列表接口*/
app.post("/product/queryMaxSortByName","select_queryMaxSortByName");
/*查询店铺列表接口*/
app.post("/ShopsRest/queryAllShops","select_queryAllShops");
/*查询通过审核店铺列表接口*/
app.post("/ShopsRest/selectCheckPassShopsByName","select_selectCheckPassShopsByName");
/*根据品牌查询店铺*/
app.post("/ShopsRest/queryShopsByBrandId","select_queryShopsByBrandId");
/*模糊查询*/
app.post("/DrawlineActivityRest/selectActivityListForSelect","select_selectActivityListForSelect");
/*获取JIT店铺*/
app.post("/AgreementRest/getJitSupplierByBrandId","select_getJitSupplierByBrandId");
/**/
app.post("/guang/article/getSortList","select_getSortList");
/*发券搜索*/
app.post("/coupon/queryList","select_queryList");
/*获取所有APP版本号列表*/
app.post("/suggest/suggest/getAllAppVersions","select_getAllAppVersions");
/*获取所有回复人*/
app.post("/suggest/suggest/findAllReplyInfo","select_findAllReplyInfo");
/*类目*/
app.post("/goods/query/querySortBySmallSort","select_querySortBySmallSort");
app.post("/product/class/queryAllProductSortList","select_queryAllMaxSortList");
app.post("/product/class/queryProductSortList","select_queryProductSortList");
app.post("/sale/product/queryPSNotTreeWhenLevelAndStatus","select_queryPSNotTreeWhenLevelAndStatus");
app.post("/sale/product/queryPSListByParentIdWhenStatus","select_queryPSListByParentIdWhenStatus");
app.post("/refundExchangeAttribute/queryRefundExchangeProductSkn","select_queryRefundExchangeProductSkn");
app.post("/product/fuzzySearchProductSortIds","select_fuzzySearchProductSortIds");
app.post("/product/searchAllSortLevel","select_searchAllSortLevel");
}