You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
484 B
9 lines
484 B
// appId: 正式 null | 测试 null
|
|
export const DEV = "dev"; // dev 测试 | prod 正式
|
|
export const VERSION = '1.0.0'; // 版本号
|
|
export const DEVURL = 'http://192.168.3.181'; // 测试服请求地址
|
|
export const PRODURL = ''; // 正式服请求地址
|
|
export const CALLBACKURL = 'http://192.168.3.183:8080'; // 重定向地址(H5授权换取code回调地址)
|
|
export const APPID = 'wx98e64ab875b2553e'; // 公众号appid
|
|
|
|
export const API_OFFICIAL_LOGIN = '/api/official_login';
|