lilishop-ui/buyer/public/config.js

18 lines
447 B
JavaScript
Raw Normal View History

var BASE = {
/**
* @description api请求基础路径
*/
API_DEV: {
2022-08-26 17:12:48 +08:00
common: "http://localhost:8890",
buyer: "http://localhost:8888",
seller: "http://localhost:8889",
manager: "http://localhost:8887"
},
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"
},
};