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.

14 lines
368 B

  1. let current ="develop";
  2. const accountInfo = wx.getAccountInfoSync();
  3. current = accountInfo.miniProgram.envVersion;
  4. const api={
  5. develop:"http://h5.xzaiyp.top",
  6. // develop:"https://api-test.catmdogd.com/test-api",
  7. trial:"https://api-test.catmdogd.com/test-api",
  8. release:"https://api.catmdogd.com/prod-api",
  9. }
  10. const currentUrl = api[current];
  11. export {currentUrl};