From c5f5d8c98c70974997c027a0462eb4a9d740c6ca Mon Sep 17 00:00:00 2001 From: gyj Date: Mon, 6 May 2024 15:55:18 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=B5=8B=E8=AF=95bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/caseManagement/caseList.vue | 4 ++- .../caseManagement/components/addCase.vue | 28 +++++++++---------- src/views/login.vue | 2 +- vue.config.js | 6 ++-- 4 files changed, 21 insertions(+), 19 deletions(-) diff --git a/src/views/caseManagement/caseList.vue b/src/views/caseManagement/caseList.vue index d069bc9..8617aee 100644 --- a/src/views/caseManagement/caseList.vue +++ b/src/views/caseManagement/caseList.vue @@ -287,7 +287,9 @@ export default { }; }, created() { - this.queryParams.caseNum = this.$route.query.caseNum; + // this.queryParams.caseNum = this.$route.query.caseNum; + this.$set(this.queryParams,"caseNum",this.$route.query.caseNum); + console.log(this.$route.query) if (this.$route.query.token) { this.queryDisable = true; } else { diff --git a/src/views/caseManagement/components/addCase.vue b/src/views/caseManagement/components/addCase.vue index 3a2cf29..725f259 100644 --- a/src/views/caseManagement/components/addCase.vue +++ b/src/views/caseManagement/components/addCase.vue @@ -329,7 +329,7 @@ - - + - - + - + @@ -376,7 +376,7 @@ - - - - + - - + - - diff --git a/vue.config.js b/vue.config.js index dfb7aa2..7d3a308 100644 --- a/vue.config.js +++ b/vue.config.js @@ -11,11 +11,11 @@ const name = process.env.VUE_APP_TITLE || '调解系统' // 网页标题 const port = process.env.port || process.env.npm_config_port || 80 // 端口 -// const API = 'http://121.40.189.20:7001' //生产 -const API = 'http://121.40.189.20:6001' //测试 +const API = 'http://121.40.189.20:7001' //生产 +// const API = 'http://121.40.189.20:6001' //测试 // const API = 'http://192.168.3.18:6001' //B // const API = 'http://172.16.0.237:6001' //Q -// const API = 'http://172.16.1.26:6001' //w +// const API = 'http://172.16.1.26:7001' //w // vue.config.js 配置说明 //官方vue.config.js 参考文档 https://cli.vuejs.org/zh/config/#css-loaderoptions -- 2.54.0