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.
36 lines
552 B
36 lines
552 B
// 开发环境
|
|
export default {
|
|
base: {
|
|
ip: process.env.VUE_APP_BASE_API
|
|
},
|
|
basic: {},
|
|
storage: {
|
|
ip: process.env.VUE_APP_STORAGE_API
|
|
},
|
|
auth: {
|
|
ip: process.env.VUE_APP_AUTHSERVER_API
|
|
},
|
|
crm: {
|
|
ip: 'http://localhost'
|
|
},
|
|
oms: {
|
|
ip: 'http://localhost'
|
|
},
|
|
wx: {
|
|
ip: 'http://localhost',
|
|
basicPort: ''
|
|
},
|
|
client: {
|
|
client_id: 'basic-web',
|
|
grant_type: 'password',
|
|
scope: 'WebAppGateway BaseService'
|
|
}
|
|
}
|
|
// 测试环境
|
|
// export default {
|
|
|
|
// }
|
|
// 发布环境
|
|
// export default {
|
|
|
|
// }
|
|
|