27 lines
647 B
JavaScript
27 lines
647 B
JavaScript
// 不同的环境变量配置
|
|
const wx_yitisheng_prod = {
|
|
// requestBaseUrl: 'https://yitisheng.vip/jbt',
|
|
requestBaseUrl: 'http://127.0.0.1:8080/jeecg-boot/',
|
|
appid: 'wxb9cf28f42ffa35e5',
|
|
name:'艺体志愿宝'
|
|
}
|
|
|
|
const dy_yitisheng_prod = {
|
|
requestBaseUrl: 'https://yitisheng.vip/jbt',
|
|
appid: 'tt59a72f1ac6964bfa01',
|
|
name:'艺体志愿宝'
|
|
}
|
|
|
|
const dy_tiyu_prod = {
|
|
requestBaseUrl: 'https://yitisheng.vip/jbt',
|
|
// requestBaseUrl: 'http://192.168.1.108:8080/jeecg-boot/',
|
|
appid: 'tt9a2bec96051c14c001',
|
|
name:'体育志愿宝'
|
|
}
|
|
|
|
export default {
|
|
wx_yitisheng_prod,
|
|
dy_yitisheng_prod,
|
|
dy_tiyu_prod
|
|
}
|