12345678910111213141516171819202122 |
- // import { envs } from './request.js'
- /* 接口中常量 */
- export const URL = "192.168.100.63";
- /**
- * 配置信息,针对不同的平台进行配置
- */
- export const envs = {
- //开发环境配置
- development: {
- baseUrl: "192.168.100.63:8087",
- // baseUrl: "222.85.144.89:19002",
- },
- //生产环境配置
- production: {
- // baseUrl: "222.85.144.89:19002",
- baseUrl: "192.168.100.63:8087"
- }
- }
-
-
- export const fileURL = 'http://192.168.100.63:8087/default-bucket/'
- export const sm4Key = "5dc11f854ceca147";
|