27 lines
759 B
JavaScript
27 lines
759 B
JavaScript
var BASE = {
|
|
/**
|
|
* @description api请求基础路径
|
|
*/
|
|
API_DEV: {
|
|
<<<<<<< HEAD
|
|
// common: "https://common-api.pickmall.cn",
|
|
// buyer: "https://buyer-api.pickmall.cn",
|
|
// seller: "https://store-api.pickmall.cn",
|
|
// manager: "https://admin-api.pickmall.cn"
|
|
common: "http://127.0.0.1:8890",
|
|
buyer: "http://127.0.0.1:8892",
|
|
=======
|
|
common: "http://localhost:8890",
|
|
buyer: "http://localhost:8888",
|
|
seller: "http://localhost:8889",
|
|
manager: "http://localhost:8887"
|
|
>>>>>>> clerk
|
|
},
|
|
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"
|
|
},
|
|
};
|