28 lines
761 B
TypeScript
28 lines
761 B
TypeScript
/**
|
||
* 获取小程序版本信息
|
||
* 值有:develop(开发版)、trial(体验版)、release(正式版)
|
||
*/
|
||
const accountInfo = wx.getAccountInfoSync()
|
||
const envVersion = accountInfo.miniProgram.envVersion || 'trial'
|
||
|
||
const GDEnvs = {
|
||
develop: {
|
||
web: 'https://tlth5.yijiesudai.com/unicom',
|
||
host: 'https://tlth5.yijiesudai.com',
|
||
mdHost: 'https://tcomlog.yijiesudai.com'
|
||
},
|
||
trial: {
|
||
web: 'https://tlth5.yijiesudai.com/unicom',
|
||
host: 'https://tlth5.yijiesudai.com',
|
||
mdHost: 'https://tcomlog.yijiesudai.com'
|
||
},
|
||
release: {
|
||
web: 'https://lth5.blingfintech.com/unicom',
|
||
host: 'https://lth5.blingfintech.com',
|
||
mdHost: 'https://comlog.yijiesudai.com'
|
||
},
|
||
}
|
||
|
||
export class allBaseUrl {
|
||
static GDEnvs = GDEnvs[envVersion]
|
||
} |