NickOooo 9ade730cf0 init | il y a 2 ans | |
---|---|---|
config | il y a 2 ans | |
docs | il y a 2 ans | |
public | il y a 2 ans | |
src | il y a 2 ans | |
tests | il y a 2 ans | |
.browserslistrc | il y a 2 ans | |
.editorconfig | il y a 2 ans | |
.env | il y a 2 ans | |
.env.1081 | il y a 2 ans | |
.env.development | il y a 2 ans | |
.env.fmea | il y a 2 ans | |
.env.localDev | il y a 2 ans | |
.env.production | il y a 2 ans | |
.env.uat | il y a 2 ans | |
.eslintrc.js | il y a 2 ans | |
.gitattributes | il y a 2 ans | |
.gitignore | il y a 2 ans | |
.markdownlint.json | il y a 2 ans | |
.prettierrc | il y a 2 ans | |
.travis.yml | il y a 2 ans | |
LICENSE | il y a 2 ans | |
README.md | il y a 2 ans | |
babel.config.js | il y a 2 ans | |
jest.config.js | il y a 2 ans | |
jsconfig.json | il y a 2 ans | |
old.env | il y a 2 ans | |
package.json | il y a 2 ans | |
postcss.config.js | il y a 2 ans | |
vue.config.js | il y a 2 ans | |
webstorm.config.js | il y a 2 ans | |
yarn.lock | il y a 2 ans |
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": ""
// }
}
}
}