README.md 373 B

FMEA 管理模块

  1. src/providers/http.js 修改http请求地址

  2. vue.config.js 中修改代理改为本地地址

    devServer: {
    		host: 'localhost',
    		port: 8081,
    		disableHostCheck: true,
    		proxy: {
    			"/DFMEA": {
    				target: "http://localhost:8082",//接口的地址
    				changeOrigin: true
    				// pathRewrite: {
    				// 	"^/DFMEA": ""
    				// }
    			}
    		}
    	}