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

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