Commit 909a7349 authored by xinzhedeai's avatar xinzhedeai

fix: 图片管理 ip地址不匹配问题统一处理

parent b16e93a8
......@@ -7,6 +7,7 @@ ENV = 'development'
# 边坡结构稳定性监测系统/开发环境
VUE_APP_BASE_API = '/dev-api'
#VUE_APP_BASE_API = '/prod-api'
VUE_APP_BASE_URL = 'http://192.168.2.16:9090'
# 路由懒加载
VUE_CLI_BABEL_TRANSPILE_MODULES = true
......@@ -4,5 +4,12 @@ VUE_APP_TITLE = 边坡结构稳定性监测系统
# 生产环境配置
ENV = 'production'
# 若依管理系统/生产环境
VUE_APP_BASE_API = '/prod-api'
\ No newline at end of file
VUE_APP_BASE_API = '/prod-api'
# 正式环境
# VUE_APP_BASE_URL = 'http://60.212.188.152:12100'
# 测试环境
VUE_APP_BASE_URL = 'http://192.168.3.60:9090'
......@@ -15,7 +15,10 @@ const getters = {
topbarRouters: state => state.permission.topbarRouters,
defaultRoutes: state => state.permission.defaultRoutes,
sidebarRouters: state => state.permission.sidebarRouters,
appPicApi: res => 'http://60.212.188.152:12100',
// appPicApi: res => 'http://60.212.188.152:12100',
// appPicApi: res => 'http://192.168.2.16:9090',
appPicApi: res => process.env.VUE_APP_BASE_URL,
// exportModel: res => 'http://60.212.188.152:12100',
// appPicApi: res => 'http://192.168.3.37:40251',
}
......
......@@ -37,7 +37,8 @@ module.exports = {
// detail: https://cli.vuejs.org/config/#devserver-proxy
[process.env.VUE_APP_BASE_API]: {
// target: `http://192.168.3.226:9090`,
target: `http://192.168.2.16:9090`,
// target: `http://192.168.2.16:9090`,
target: process.env.VUE_APP_BASE_URL,
// target: `http://60.212.188.152:12000`,//服务器
// target: `http://182.92.170.89:10082`,//服务器
changeOrigin: true,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment