30 lines
831 B
JavaScript
30 lines
831 B
JavaScript
var BASE = {
|
||
/**
|
||
* @description api请求基础路径
|
||
*/
|
||
API_DEV: {
|
||
common: "http://192.168.1.200:8890",
|
||
buyer: "http://192.168.1.200:8888",
|
||
seller: "http://192.168.1.200:8889",
|
||
manager: "http://192.168.1.200:8887"
|
||
},
|
||
API_PROD: {
|
||
common: "https://common-api.pickmall.cn",
|
||
buyer: "https://buyer-api.pickmall.cn",
|
||
seller: "https://store-api.pickmall.cn",
|
||
manager: "https://admin-api.pickmall.cn",
|
||
},
|
||
/**
|
||
* @description // 跳转买家端地址 pc端
|
||
*/
|
||
PC_URL: "http://127.0.0.1:10000",
|
||
/**
|
||
* @description // 跳转买家端地址 wap端
|
||
*/
|
||
WAP_URL: "https://m-b2b2c.pickmall.cn",
|
||
/**
|
||
* @description api请求基础路径前缀
|
||
*/
|
||
PREFIX: "/store",
|
||
};
|