app.js 253 B

12345678910
  1. //app.js
  2. App({
  3. onLaunch: function () {
  4. let test = wx.getAccountInfoSync().miniProgram.envVersion;
  5. if(test !== 'release') { // 非正式环境
  6. this.baseUrl = "https://bigdata.smcic.net"
  7. }
  8. },
  9. baseUrl: "https://bigdata.smcic.net"
  10. })