web/buyer/public/config.js
张学涛 ed4c8efc82 0224
2025-02-24 18:01:38 +08:00

18 lines
505 B
JavaScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

var BASE = {
  /**
   * @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"
  },
};