api-domain.js
4.3 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
const _ = require('lodash');
// api调用列表
let domainApis = {
erp: {
login: '/erp-shop-web/account/profile/login',
getPurview: '/erp-shop-web/account/menu/query_by_pid',
allotPurchaseList: '/erp-shop-web/purchase/list',
allotDelivery: '/erp-shop-web/purchase/delivery',
allotExpressList: '/erp-shop-web/purchase/expressList',
allotExpressDetail: '/erp-shop-web/purchase/expressDetail',
allotWarehouseInfo: '/erp-shop-web/purchase/queryBySupplierId',
allotStockOut: '/erp-shop-web/purchase/stockOut',
allotExpressNumList: '/erp-shop-web/purchase/queryExpressListByExpressNumber',
allotExpressCompList: '/erp-shop-web/express/getExpressList',
allotExportList: '/erp-shop-web/export/exportForPurchaseForm',
allotPrintExpressDetail: '/erp-shop-web/purchase/queryExpressListByExpressNumber',
jitProductList: '/erp-shop-web/product/jitProductList',
getJitStorageListBySkn: '/erp-shop-web/product/getJitStorageListBySkn',
importJitStorage: '/erp-shop-web/product/importJitStorage'
},
platform: {
queryShopsByAdminPid: '/SellerShopController/queryShopsByAdminPid',
getSellerBrandInfo: '/SellerProductController/getSellerBrandInfo',
getSellerSortInfo: '/SellerProductController/getSellerSortInfo',
querySellerProductColors: '/SellerProductController/querySellerProductColors',
querySortSize: '/SellerSortSizeController/querySortSize',
addProduct: '/SellerProductController/addProduct',
queryProductParamBySortId: '/SellerStandardController/queryProductParamBySortId',
selectAttributes: '/SellerProductAttributeController/selectAttributes',
querySellerProductMaterial: '/SellerProductController/querySellerProductMaterial',
updateSellerProductNetSaleInfo: '/SellerProductController/updateSellerProductNetSaleInfo',
querySellerProductList: '/SellerProductController/querySellerProductList',
productOutSale: '/SellerSknStatusController/productOutSale',
productOnSale: '/SellerSknStatusController/productOnSale',
queryProdSizeList: '/SellerProductSize/queryProdSizeList',
saveProdSizeInfo: '/SellerProductSize/saveProdSizeInfo',
getSellerAllSortInfo: '/SellerProductController/getSellerAllSortInfo',
exportSellerProductList: '/SellerProductController/exportSellerProductList',
updateSellerPrice: '/SellerPriceController/updateSellerPrice',
updateProduct: '/SellerProductController/updateProduct',
getProduct: '/SellerProductController/getProduct',
getShopDetailById: '/SellerShopController/getShopDetailById',
updateShopBaseInfoById: '/SellerShopController/updateShopBaseInfoById',
uploads: '/fileupload/uploads',
findBusinessShopsDecorator: '/ShopsDecoratorRest/findBusinessShopsDecorator',
getShopsCategoryList: '/SellerShopController/getShopsCategoryList',
addOrUpdateShopsCategory: '/SellerShopController/addOrUpdateShopsCategory',
deleteShopsCategory: '/SellerShopController/deleteShopsCategory',
getAllProduct: '/SellerShopController/getAllProduct',
getBindProductCount: '/SellerShopController/getBindProductCount',
getBindProduct: '/SellerShopController/getBindProduct',
addCategoryLinkProduct: '/SellerShopController/addCategoryLinkProduct',
deleteCategoryLinkProduct: '/SellerShopController/deleteCategoryLinkProduct',
getRemoteImageUrlBySku: '/product/getRemoteImageUrlBySku'
},
shop: {
login: '/loginInter',
switchShop: '/index/ajaxshop'
}
};
// 域名列表
const domains = {
erp: 'http://192.168.103.82:9098',
platform: 'http://192.168.102.210:8088/platform',
shop: 'http://192.168.102.211:30016'
};
if (global.env.Test) {
domains.erp = 'http://192.168.103.82:9098';
domains.platform = 'http://192.168.102.210:8088/platform';
domains.shop = 'http://192.168.102.211:30016';
}
if (global.env.Production) {
domains.erp = 'http://gw.erp.yohoops.org';
domains.platform = 'http://api.platform.yohoops.org/platform';
domains.shop = 'http://shops.yohobuy.com';
}
_.each(domainApis, (apis, domainName) => {
_.each(apis, (url, api) => {
apis[api] = _.get(domains, domainName, '') + url;
});
});
module.exports = domainApis;