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.
123 lines
2.5 KiB
123 lines
2.5 KiB
let configJSON;
|
|
if (process.env.NODE_ENV === "development") {
|
|
configJSON = {
|
|
base: {
|
|
// ip: 'http://localhost',
|
|
// auth_port: '44344',
|
|
// public_port: '44344',
|
|
// backend_port: '44344',
|
|
|
|
// ip: 'http://localhost',
|
|
// auth_port: '10100',
|
|
// public_port: '10130',
|
|
// backend_port: '10130'
|
|
|
|
/* ip: 'http://localhost',
|
|
auth_port: '44378',
|
|
public_port: '44378',
|
|
backend_port: '44378', */
|
|
|
|
//ip: 'http://192.168.0.203',
|
|
//ip: 'http://192.168.0.140',
|
|
ip: "http://localhost",
|
|
auth_port: "44344",
|
|
public_port: "44344",
|
|
backend_port: "44344",
|
|
},
|
|
basic: {},
|
|
upload: {
|
|
ip: "http://localhost",
|
|
},
|
|
authServer: {
|
|
ip: "http://localhost",
|
|
},
|
|
crm: {
|
|
ip: "http://localhost",
|
|
},
|
|
oms: {
|
|
ip: "http://localhost",
|
|
},
|
|
wx: {
|
|
ip: "http://localhost",
|
|
basicPort: "",
|
|
},
|
|
client: {
|
|
client_id: "basic-web",
|
|
client_secret: "1q2w3e*",
|
|
grant_type: "password",
|
|
},
|
|
};
|
|
} else {
|
|
// 发布环境
|
|
configJSON = {
|
|
base: {
|
|
//ip: 'http://192.168.0.203',
|
|
ip: "http://149.223.116.5",
|
|
//ip: 'http://114.116.225.148',
|
|
//ip: 'http://10.123.148.162',
|
|
auth_port: "8066",
|
|
public_port: "8092",
|
|
backend_port: "8092",
|
|
},
|
|
basic: {},
|
|
upload: {
|
|
ip: "http://localhost",
|
|
},
|
|
authServer: {
|
|
ip: "http://localhost",
|
|
},
|
|
crm: {
|
|
ip: "http://localhost",
|
|
},
|
|
oms: {
|
|
ip: "http://localhost",
|
|
},
|
|
wx: {
|
|
ip: "http://localhost",
|
|
basicPort: "",
|
|
},
|
|
client: {
|
|
client_id: "basic-web",
|
|
client_secret: "1q2w3e*",
|
|
grant_type: "password",
|
|
},
|
|
};
|
|
configJSON.base.ip = `${window.location.protocol}//${window.location.hostname}`;
|
|
configJSON.base.auth_port =
|
|
configJSON.base.backend_port =
|
|
configJSON.base.public_port =
|
|
window.location.port;
|
|
}
|
|
// 开发环境
|
|
// export default {
|
|
// base: {
|
|
// ip: 'http://localhost',
|
|
// auth_port: '44323',
|
|
// public_port: '44350',
|
|
// backend_port: '44350'
|
|
// },
|
|
// basic: {},
|
|
// upload: {
|
|
// ip: 'http://localhost'
|
|
// },
|
|
// authServer: {
|
|
// ip: 'http://localhost'
|
|
// },
|
|
// crm: {
|
|
// ip: 'http://localhost'
|
|
// },
|
|
// oms: {
|
|
// ip: 'http://localhost'
|
|
// },
|
|
// wx: {
|
|
// ip: 'http://localhost',
|
|
// basicPort: ''
|
|
// },
|
|
// client: {
|
|
// client_id: 'abpvnext_master_App',
|
|
// client_secret: '1q2w3e*',
|
|
// grant_type: 'password'
|
|
// }
|
|
// }
|
|
|
|
export default configJSON;
|
|
|