lilishop-ui/buyer/public/config.js

18 lines
467 B
JavaScript
Raw Normal View History

var BASE = {
/**
* @description api请求基础路径
*/
API_DEV: {
2022-03-03 11:26:50 +08:00
common: "http://192.168.102:8890",
buyer: "http://192.168.102:8888",
2022-02-15 10:17:19 +08:00
seller: "https://store-api.pickmall.cn",
manager: "https://admin-api.pickmall.cn"
},
API_PROD: {
2022-02-17 16:37:11 +08:00
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"
},
};