lilishop-ui/buyer/public/config.js

18 lines
456 B
JavaScript
Raw Normal View History

var BASE = {
2023-01-10 18:44:39 +08:00
/**
* @description api请求基础路径
*/
API_DEV: {
2023-01-13 10:53:39 +08:00
common: "http://192.168.0.113:8890",
buyer: "http://192.168.0.113:8898",
2023-01-10 18:44:39 +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"
},
};