18 lines
467 B
JavaScript
18 lines
467 B
JavaScript
var BASE = {
|
|
/**
|
|
* @description api请求基础路径
|
|
*/
|
|
API_DEV: {
|
|
common: "http://192.168.102:8890",
|
|
buyer: "http://192.168.102:8888",
|
|
seller: "https://store-api.pickmall.cn",
|
|
manager: "https://admin-api.pickmall.cn"
|
|
},
|
|
API_PROD: {
|
|
common: "http://192.168.2.110:8890",
|
|
buyer: "http://192.168.2.110:8888",
|
|
seller: "http://192.168.2.110:8889",
|
|
manager: "http://192.168.2.110:8887"
|
|
},
|
|
};
|