32 lines
836 B
TypeScript
32 lines
836 B
TypeScript
/**
|
||
* 获取小程序版本信息
|
||
* 值有:develop(开发版)、trial(体验版)、release(正式版)
|
||
*/
|
||
const accountInfo = wx.getAccountInfoSync();
|
||
const envVersion = accountInfo.miniProgram.envVersion || "trial";
|
||
|
||
const GDEnvs = {
|
||
develop: {
|
||
// web: "http://192.168.1.105:3000",
|
||
web: "http://localhost:3000",
|
||
// web: "http://10.10.0.27:3000",
|
||
// web: "https://h5.goudezhao.com",
|
||
host: "https://api.1024api.com",
|
||
mdHost: "https://tcomlog.yijiesudai.com",
|
||
},
|
||
trial: {
|
||
web: "https://h5.goudezhao.com",
|
||
host: "https://api.1024api.com",
|
||
mdHost: "https://tcomlog.yijiesudai.com",
|
||
},
|
||
release: {
|
||
web: "https://h5.goudezhao.com",
|
||
host: "https://api.1024api.com",
|
||
mdHost: "https://comlog.yijiesudai.com",
|
||
},
|
||
};
|
||
|
||
export class allBaseUrl {
|
||
static GDEnvs = GDEnvs[envVersion];
|
||
}
|