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

30 lines
831 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",
  },
  /**
   * @description // 跳转买家端地址 pc端
   */
  PC_URL: "http://127.0.0.1:10000",
  /**
   * @description  // 跳转买家端地址 wap端
   */
  WAP_URL: "https://m-b2b2c.pickmall.cn",
  /**
   *  @description api请求基础路径前缀
   */
  PREFIX: "/store",
};