diff --git a/.gitignore b/.gitignore index 45ee6c8..b3688e7 100644 --- a/.gitignore +++ b/.gitignore @@ -20,3 +20,5 @@ yarn-error.log* *.njsproj *.sln *.sw* +/UDI_WMS_Client +/*.gitignore diff --git a/package-lock.json b/package-lock.json index a349b14..659c00c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -34,7 +34,7 @@ "babel-core": "7.0.0-bridge.0", "babel-jest": "^23.0.1", "sass-loader": "^7.0.1", - "vue-template-compiler": "latest" + "vue-template-compiler": "2.5.16" } }, "node_modules/@babel/code-frame": { @@ -15333,8 +15333,8 @@ }, "node_modules/qrcodejs2": { "version": "0.0.2", - "resolved": "https://registry.npmjs.org/qrcodejs2/-/qrcodejs2-0.0.2.tgz", - "integrity": "sha1-Rlr+Xjnxn6zsuTLBH3oYYQkUauE=" + "resolved": "https://registry.npmmirror.com/qrcodejs2/-/qrcodejs2-0.0.2.tgz", + "integrity": "sha512-+Y4HA+cb6qUzdgvI3KML8GYpMFwB24dFwzMkS/yXq6hwtUGNUnZQdUnksrV1XGMc2mid5ROw5SAuY9XhI3ValA==" }, "node_modules/qs": { "version": "6.5.2", @@ -19298,7 +19298,7 @@ }, "node_modules/vue": { "version": "2.5.16", - "resolved": "https://registry.npmjs.org/vue/-/vue-2.5.16.tgz", + "resolved": "https://registry.npmmirror.com/vue/-/vue-2.5.16.tgz", "integrity": "sha512-/ffmsiVuPC8PsWcFkZngdpas19ABm5mh2wA7iDqcltyCTwlgZjHGeJYOXkBMo422iPwIcviOtrTCUpSfXmToLQ==" }, "node_modules/vue-eslint-parser": { @@ -34133,8 +34133,8 @@ }, "qrcodejs2": { "version": "0.0.2", - "resolved": "https://registry.npmjs.org/qrcodejs2/-/qrcodejs2-0.0.2.tgz", - "integrity": "sha1-Rlr+Xjnxn6zsuTLBH3oYYQkUauE=" + "resolved": "https://registry.npmmirror.com/qrcodejs2/-/qrcodejs2-0.0.2.tgz", + "integrity": "sha512-+Y4HA+cb6qUzdgvI3KML8GYpMFwB24dFwzMkS/yXq6hwtUGNUnZQdUnksrV1XGMc2mid5ROw5SAuY9XhI3ValA==" }, "qs": { "version": "6.5.2", @@ -37405,7 +37405,7 @@ }, "vue": { "version": "2.5.16", - "resolved": "https://registry.npmjs.org/vue/-/vue-2.5.16.tgz", + "resolved": "https://registry.npmmirror.com/vue/-/vue-2.5.16.tgz", "integrity": "sha512-/ffmsiVuPC8PsWcFkZngdpas19ABm5mh2wA7iDqcltyCTwlgZjHGeJYOXkBMo422iPwIcviOtrTCUpSfXmToLQ==" }, "vue-eslint-parser": { diff --git a/package.json b/package.json index 4f8b018..f66f0c8 100644 --- a/package.json +++ b/package.json @@ -36,7 +36,7 @@ "babel-core": "7.0.0-bridge.0", "babel-jest": "^23.0.1", "sass-loader": "^7.0.1", - "vue-template-compiler": "latest" + "vue-template-compiler": "2.5.16" }, "browserslist": [ "> 1%", diff --git a/public/config.js b/public/config.js index 3ac1b91..4b895ca 100644 --- a/public/config.js +++ b/public/config.js @@ -1,5 +1,5 @@ window.global_config = { - "BASE_URL": "http://139.159.187.130:8080/UDI_WMS_MC", + "BASE_URL": "http://192.168.0.180:9991", // "BASE_URL":"http://127.0.0.1:9991", /** * diff --git a/public/config.json b/public/config.json index 4fa0fa2..877b6e0 100644 --- a/public/config.json +++ b/public/config.json @@ -1,7 +1,8 @@ { - "UDI_SYNC_SERVER_IP": "http://192.168.0.109:9991/", - "BASE_URL": "http://192.168.0.109:9991", - "SERVER_IP": "http://192.168.0.109:9991", + "UDI_SYNC_SERVER_IP": "http://192.168.0.109:9995/", + "BASE_URL":"http://192.168.0.200:9992/", + "SERVER_IP": "http://192.168.0.200:9992/", "WEBSOCKET_URL": "ws://192.168.0.109:9991/UDI_WMS_MC/api/websocket/", - "hosp_name": "平和县医院" + "hosp_name": "福建省XX市医院" + } diff --git a/src/main.js b/src/main.js index c8a8321..d1a7f71 100644 --- a/src/main.js +++ b/src/main.js @@ -24,6 +24,7 @@ Object.keys(filters).forEach(key => { }); Vue.config.productionTip = false; +Vue.config.silent = true; let getUrl = ""; let startApp = function () { console.log(window.global_config.BASE_URL); diff --git a/vue.config.js b/vue.config.js index 2ba5f3d..67b4d7f 100644 --- a/vue.config.js +++ b/vue.config.js @@ -21,5 +21,6 @@ module.exports = { args[0].template = process.env.template; return args; }); - } + }, + lintOnSave: false //不打印lint };