猫妈狗爸伴宠师小程序前端代码
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.

17 lines
422 B

  1. let current = "develop";
  2. const accountInfo = wx.getAccountInfoSync();
  3. current = accountInfo.miniProgram.envVersion;
  4. const api = {
  5. develop: "http://h5.xzaiyp.top/prod-api", // 开发
  6. trial: "http://h5.xzaiyp.top/prod-api", //测试
  7. release: "http://h5.xzaiyp.top/prod-api", // 线上
  8. }
  9. console.log('--current', current)
  10. const currentUrl = api[current];
  11. console.log('--currentUrl', currentUrl)
  12. export {
  13. currentUrl
  14. };