web/buyer/public/config.js

18 lines
505 B
JavaScript
Raw Normal View History

var BASE = {
2025-02-24 18:01:38 +08:00
  /**
   * @description api请求基础路径
   */
  API_DEV: {
    common: "http://192.168.1.200:8890",
    buyer: "http://192.168.1.200:8888",
    seller: "http://192.168.1.200:8889",
    manager: "http://192.168.1.200:8887"
  },
  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"
  },
};