12 lines
278 B
JavaScript
12 lines
278 B
JavaScript
const accountInfo = wx.getAccountInfoSync();
|
|
const hosts = {
|
|
"develop": 'https://develop',
|
|
"trial": 'https://trial',
|
|
"release": 'https://release',
|
|
}
|
|
|
|
// const host = hosts[accountInfo.miniProgram.envVersion]
|
|
const host = 'http://wanyu.test';
|
|
|
|
export default {host};
|