DFMEA和PFMEA管理部分前端

NickOooo 9ade730cf0 init пре 2 година
config 9ade730cf0 init пре 2 година
docs 9ade730cf0 init пре 2 година
public 9ade730cf0 init пре 2 година
src 9ade730cf0 init пре 2 година
tests 9ade730cf0 init пре 2 година
.browserslistrc 9ade730cf0 init пре 2 година
.editorconfig 9ade730cf0 init пре 2 година
.env 9ade730cf0 init пре 2 година
.env.1081 9ade730cf0 init пре 2 година
.env.development 9ade730cf0 init пре 2 година
.env.fmea 9ade730cf0 init пре 2 година
.env.localDev 9ade730cf0 init пре 2 година
.env.production 9ade730cf0 init пре 2 година
.env.uat 9ade730cf0 init пре 2 година
.eslintrc.js 9ade730cf0 init пре 2 година
.gitattributes 9ade730cf0 init пре 2 година
.gitignore 9ade730cf0 init пре 2 година
.markdownlint.json 9ade730cf0 init пре 2 година
.prettierrc 9ade730cf0 init пре 2 година
.travis.yml 9ade730cf0 init пре 2 година
LICENSE 9ade730cf0 init пре 2 година
README.md 9ade730cf0 init пре 2 година
babel.config.js 9ade730cf0 init пре 2 година
jest.config.js 9ade730cf0 init пре 2 година
jsconfig.json 9ade730cf0 init пре 2 година
old.env 9ade730cf0 init пре 2 година
package.json 9ade730cf0 init пре 2 година
postcss.config.js 9ade730cf0 init пре 2 година
vue.config.js 9ade730cf0 init пре 2 година
webstorm.config.js 9ade730cf0 init пре 2 година
yarn.lock 9ade730cf0 init пре 2 година

README.md

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": ""
    				// }
    			}
    		}
    	}