lilishop-ui/buyer/public/config.js

22 lines
671 B
JavaScript
Raw Normal View History

var BASE = {
/**
* @description api请求基础路径
*/
API_DEV: {
2022-11-22 17:17:37 +08:00
common: "http://192.168.0.113:8890",
2022-12-28 09:22:05 +08:00
buyer: "http://192.168.0.113:8898",
2022-10-25 17:32:49 +08:00
seller: "https://store-api.pickmall.cn",
manager: "https://admin-api.pickmall.cn"
// common: "http://192.168.0.105:8890",
// buyer: "http://192.168.0.105:8888",
// seller: "http://192.168.0.105:8889",
// manager: "http://192.168.0.105:8887"
},
API_PROD: {
2022-10-25 17:32:09 +08:00
common: "https://common-api.pickmall.cn",
buyer: "https://buyer-api.pickmall.cn",
seller: "https://store-api.pickmall.cn",
manager: "https://admin-api.pickmall.cn"
},
};