宜呗小程序--微信小程序
Lzk
2025-08-05 b7bcaf556aa2424e808b6e6426ab22df9cfe11c1
1
2
3
4
5
6
7
8
9
10
// API基础配置
export const baseURL = process.env.NODE_ENV === 'development' 
  ? 'https://test785122.iben-itech.com'  // 开发环境  http://192.168.1.131:8080
  : 'https://test785122.iben-itech.com'  // 生产环境  https://skfq.itech-zwbbg.cn
 
// API接口版本
export const apiVersion = '/api/v2'
 
// 请求超时时间
export const timeout = 60000