let current = "develop"; const accountInfo = wx.getAccountInfoSync(); current = accountInfo.miniProgram.envVersion; const api = { develop: "https://pet-admin.hhlm1688.com/api/prod-api/", // 开发 trial: "https://pet-admin.hhlm1688.com/api/prod-api/", //测试 release: "https://pet-admin.hhlm1688.com/api/prod-api/", // 线上 } const currentUrl = api[current]; export { currentUrl };