lilishop-ui/buyer/public/config.js

18 lines
484 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: {
common: "https://common-api.pickmall.cn",
buyer: "https://buyer-api.pickmall.cn",
seller: "https://store-api.pickmall.cn",
manager: "https://admin-api.pickmall.cn"
},
};