app.config.ts 367 B

123456789101112
  1. import { getAccountInfoSync } from "./lib/wx/open-api";
  2. const miniProgram = getAccountInfoSync();
  3. const env = miniProgram.envVersion;
  4. let host = "xingxinsaas.com";
  5. if (env === "trial" || env === 'develop') {
  6. // host = "test.hzliuzhi.com";
  7. }
  8. export const Base_URL = `https://${host}/manager/fdhb-mobile`;
  9. export const Upload_URL = `https://${host}/manager/file`;