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

15 lines
424 B

1 month ago
1 month ago
  1. let current = "release";
  2. const accountInfo = wx.getAccountInfoSync();
  3. current = accountInfo.miniProgram.envVersion;
  4. const api = {
  5. // develop:"http://h5.xzaiyp.top",
  6. develop:"http://pet-admin.hhlm1688.com/api",
  7. // develop: "http://youyi-test.natapp1.cc/prod-api", // 开发
  8. trial: "http://h5.xzaiyp.top", //测试
  9. release: "https://api.catmdogd.com/prod-api",
  10. }
  11. const currentUrl = api[current];
  12. export {
  13. currentUrl
  14. };