diff --git a/web/package-lock.json b/web/package-lock.json index 62f12e5..98b6ed9 100644 --- a/web/package-lock.json +++ b/web/package-lock.json @@ -3793,7 +3793,7 @@ }, "async-validator": { "version": "1.8.5", - "resolved": "https://registry.npm.taobao.org/async-validator/download/async-validator-1.8.5.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fasync-validator%2Fdownload%2Fasync-validator-1.8.5.tgz", + "resolved": "https://registry.npm.taobao.org/async-validator/download/async-validator-1.8.5.tgz?cache=0&sync_timestamp=1605749896979&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fasync-validator%2Fdownload%2Fasync-validator-1.8.5.tgz", "integrity": "sha1-3D4I7B/Q3dtn5ghC8CwM0c7G1/A=", "requires": { "babel-runtime": "6.x" @@ -3990,7 +3990,7 @@ }, "babel-helper-vue-jsx-merge-props": { "version": "2.0.3", - "resolved": "http://registry.npm.taobao.org/babel-helper-vue-jsx-merge-props/download/babel-helper-vue-jsx-merge-props-2.0.3.tgz", + "resolved": "https://registry.npm.taobao.org/babel-helper-vue-jsx-merge-props/download/babel-helper-vue-jsx-merge-props-2.0.3.tgz", "integrity": "sha1-Iq69OzOQIyjlEyk6jkmSs4T58bY=" }, "babel-jest": { @@ -6870,9 +6870,9 @@ "dev": true }, "element-ui": { - "version": "2.14.1", - "resolved": "https://registry.npm.taobao.org/element-ui/download/element-ui-2.14.1.tgz", - "integrity": "sha1-i1dFxzZsHBpgO7bAIShupxh+KqI=", + "version": "2.15.0", + "resolved": "https://registry.npm.taobao.org/element-ui/download/element-ui-2.15.0.tgz?cache=0&sync_timestamp=1610710769646&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Felement-ui%2Fdownload%2Felement-ui-2.15.0.tgz", + "integrity": "sha1-3ptzqNHj47UOgrkjpfqVKVI5vUE=", "requires": { "async-validator": "~1.8.1", "babel-helper-vue-jsx-merge-props": "^2.0.0", @@ -12497,7 +12497,7 @@ }, "normalize-wheel": { "version": "1.0.1", - "resolved": "http://registry.npm.taobao.org/normalize-wheel/download/normalize-wheel-1.0.1.tgz", + "resolved": "https://registry.npm.taobao.org/normalize-wheel/download/normalize-wheel-1.0.1.tgz", "integrity": "sha1-rsiGr/2wRQcNhWRH32Ls+GFG7EU=" }, "npm-run-path": { @@ -14788,7 +14788,7 @@ }, "resize-observer-polyfill": { "version": "1.5.1", - "resolved": "http://registry.npm.taobao.org/resize-observer-polyfill/download/resize-observer-polyfill-1.5.1.tgz", + "resolved": "https://registry.npm.taobao.org/resize-observer-polyfill/download/resize-observer-polyfill-1.5.1.tgz", "integrity": "sha1-DpAg3T0hAkRY1OvSfiPkAmmBBGQ=" }, "resolve": { @@ -16711,7 +16711,7 @@ }, "throttle-debounce": { "version": "1.1.0", - "resolved": "http://registry.npm.taobao.org/throttle-debounce/download/throttle-debounce-1.1.0.tgz", + "resolved": "https://registry.npm.taobao.org/throttle-debounce/download/throttle-debounce-1.1.0.tgz?cache=0&sync_timestamp=1604313832516&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fthrottle-debounce%2Fdownload%2Fthrottle-debounce-1.1.0.tgz", "integrity": "sha1-UYU9o3vmihVctugns1FKPEIuic0=" }, "through": { diff --git a/web/package.json b/web/package.json index e5ce40a..4ad1ae6 100644 --- a/web/package.json +++ b/web/package.json @@ -15,7 +15,7 @@ "dependencies": { "axios": "^0.19.2", "core-js": "^3.8.2", - "element-ui": "^2.14.1", + "element-ui": "^2.15.0", "sortablejs": "^1.13.0", "vue": "^2.6.12", "vuex": "^3.6.0", diff --git a/web/public/vendor/vendor.dll.1901.js b/web/public/vendor/vendor.dll.8302.js similarity index 100% rename from web/public/vendor/vendor.dll.1901.js rename to web/public/vendor/vendor.dll.8302.js diff --git a/web/src/components/Terminal.vue b/web/src/components/Terminal.vue index dfc6579..682c942 100644 --- a/web/src/components/Terminal.vue +++ b/web/src/components/Terminal.vue @@ -119,7 +119,7 @@ export default { let sshList = this.$store.state.sshList if (sshList === null) { if (this.savePass) { - sshList = `[{"host": "${sshInfo.host}", "username": "${sshInfo.username}", "port":${sshInfo.port}, "password":${sshInfo.password}}]` + sshList = `[{"host": "${sshInfo.host}", "username": "${sshInfo.username}", "port":${sshInfo.port}, "password":"${sshInfo.password}"}]` } else { sshList = `[{"host": "${sshInfo.host}", "username": "${sshInfo.username}", "port":${sshInfo.port}}]` } diff --git a/web/vue.config.js b/web/vue.config.js index 39f8625..f904fe4 100644 --- a/web/vue.config.js +++ b/web/vue.config.js @@ -6,7 +6,7 @@ const AddAssetHtmlPlugin = require('add-asset-html-webpack-plugin') const proxyTargetMap = { prod: 'https://xxx.xxx.com/', - dev: 'http://127.0.0.1:5032' + dev: 'http://192.168.37.163:5032' } const proxyTarget = proxyTargetMap[process.env.API_TYPE] || proxyTargetMap.prod const wsTarget = proxyTarget.replace('http', 'ws')