您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

12345678910111213141516171819202122
  1. // import { envs } from './request.js'
  2. /* 接口中常量 */
  3. export const URL = "192.168.100.63";
  4. /**
  5. * 配置信息,针对不同的平台进行配置
  6. */
  7. export const envs = {
  8. //开发环境配置
  9. development: {
  10. baseUrl: "192.168.100.63:8087",
  11. // baseUrl: "222.85.144.89:19002",
  12. },
  13. //生产环境配置
  14. production: {
  15. // baseUrl: "222.85.144.89:19002",
  16. baseUrl: "192.168.100.63:8087"
  17. }
  18. }
  19. export const fileURL = 'http://192.168.100.63:8087/default-bucket/'
  20. export const sm4Key = "5dc11f854ceca147";