src/providers/http.js 修改http请求地址
vue.config.js 中修改代理改为本地地址
devServer: {
host: 'localhost',
port: 8081,
disableHostCheck: true,
proxy: {
"/DFMEA": {
target: "http://localhost:8082",//接口的地址
changeOrigin: true
// pathRewrite: {
// "^/DFMEA": ""
// }
}
}
}