From 14449080c88a6c8fd2dca65154170a656175ab80 Mon Sep 17 00:00:00 2001 From: "15881625488@163.com" <15881625488@163.com> Date: Mon, 19 Jan 2026 18:16:06 +0800 Subject: [PATCH 1/3] =?UTF-8?q?fix=EF=BC=9A[=E8=B5=84=E6=BA=90=E5=BA=93?= =?UTF-8?q?=E7=AE=A1=E7=90=86]=E5=AF=BC=E5=87=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .env.development | 2 +- src/views/business/resource/gyzj/comps/gyzj/Xq.vue | 2 +- src/views/business/resource/mjy/comps/mjy/Xq.vue | 3 +-- src/views/business/study/comp/tbbd/Xq.vue | 2 +- 4 files changed, 4 insertions(+), 5 deletions(-) diff --git a/.env.development b/.env.development index e2a761f..c37d0ca 100644 --- a/.env.development +++ b/.env.development @@ -7,7 +7,7 @@ ENV = 'development' # 华西海圻管理系统/开发环境 VUE_APP_BASE_API = '/dev-api' -VUE_APP_FILE_DOMAIN = 'http://127.0.0.1:9300' +VUE_APP_FILE_DOMAIN = 'http://39.99.251.173:9300' # 路由懒加载 diff --git a/src/views/business/resource/gyzj/comps/gyzj/Xq.vue b/src/views/business/resource/gyzj/comps/gyzj/Xq.vue index 3267095..150586a 100644 --- a/src/views/business/resource/gyzj/comps/gyzj/Xq.vue +++ b/src/views/business/resource/gyzj/comps/gyzj/Xq.vue @@ -200,7 +200,7 @@ export default { exportExcel() { this.$modal.loading() exportDetail({ id: this.form.id,lang:this.$store.getters.language.split("_")[0] }).then(response => { - window.open(this.baseUrl +response.msg) + window.open(process.env.VUE_APP_FILE_DOMAIN +response.msg) this.$modal.closeLoading() }).finally(() => { this.$modal.closeLoading() diff --git a/src/views/business/resource/mjy/comps/mjy/Xq.vue b/src/views/business/resource/mjy/comps/mjy/Xq.vue index e52a21e..d196421 100644 --- a/src/views/business/resource/mjy/comps/mjy/Xq.vue +++ b/src/views/business/resource/mjy/comps/mjy/Xq.vue @@ -173,7 +173,6 @@ export default { components: { JcgjList }, data() { return { - baseUrl:process.env.VUE_APP_FILE_DOMAIN, form: {}, tzList: [], totalTz: 0, @@ -199,7 +198,7 @@ export default { exportExcel() { this.$modal.loading() exportDetail({ id: this.form.id,lang:this.$store.getters.language.split("_")[0] }).then(response => { - window.open(this.baseUrl +response.msg) + window.open(process.env.VUE_APP_FILE_DOMAIN +response.msg) this.$modal.closeLoading() }).finally(() => { this.$modal.closeLoading() diff --git a/src/views/business/study/comp/tbbd/Xq.vue b/src/views/business/study/comp/tbbd/Xq.vue index d7f9b7e..b4f8833 100644 --- a/src/views/business/study/comp/tbbd/Xq.vue +++ b/src/views/business/study/comp/tbbd/Xq.vue @@ -195,7 +195,7 @@ export default { exportExcel(jcgjlx) { this.$modal.loading() studyFormFill_exportDetail(_.merge({}, this.queryParamsJcgj, { jcgjlx: jcgjlx ,lang: this.$store.getters.language.split("_")[0]})).then(response => { - window.open(this.baseUrl + response.msg) + window.open(process.env.VUE_APP_FILE_DOMAIN + response.msg) this.$modal.closeLoading() }).finally(() => { this.$modal.closeLoading() From 75c056742f4c31dfb293a535db944b9abab20138 Mon Sep 17 00:00:00 2001 From: "15881625488@163.com" <15881625488@163.com> Date: Mon, 19 Jan 2026 18:24:04 +0800 Subject: [PATCH 2/3] =?UTF-8?q?fix=EF=BC=9A[=E8=AF=95=E9=AA=8C=E7=AE=A1?= =?UTF-8?q?=E7=90=86]=E9=A2=84=E5=A1=AB=E8=A1=A8=E5=8D=95bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/Template/HandleFormItem.vue | 2 +- src/views/business/study/comp/ytbd/Bj.vue | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/Template/HandleFormItem.vue b/src/components/Template/HandleFormItem.vue index f29bb6a..f32c83e 100644 --- a/src/components/Template/HandleFormItem.vue +++ b/src/components/Template/HandleFormItem.vue @@ -353,7 +353,7 @@ export default { // 值发生了变化,需要弹出密码输入框 const isSame = this.isEqual(this.oldValue, this.inputValue); if (this.oldValue && !isSame && this.templateFillType === "actFill") { - // this.$refs.editSignRef.show() + this.$refs.editSignRef.show() this.handleUpdateRecord(); }else{//如果是第一次填写,不需要密码验证 this.handleUpdateRecord() diff --git a/src/views/business/study/comp/ytbd/Bj.vue b/src/views/business/study/comp/ytbd/Bj.vue index 20fb0cb..3145bb1 100644 --- a/src/views/business/study/comp/ytbd/Bj.vue +++ b/src/views/business/study/comp/ytbd/Bj.vue @@ -161,7 +161,7 @@ export default { }], fzrsh: [{ required: true, - message: ' ', + message: this.$t('form.placeholderSelect'), trigger: 'blur' }], shryId: [{ From a1fe7e2be5dcb46b87cb683fe73998e8fbce9638 Mon Sep 17 00:00:00 2001 From: "15881625488@163.com" <15881625488@163.com> Date: Mon, 19 Jan 2026 18:26:37 +0800 Subject: [PATCH 3/3] =?UTF-8?q?fix=EF=BC=9A[=E6=A8=A1=E6=9D=BF=E7=AE=A1?= =?UTF-8?q?=E7=90=86]=E6=89=93=E5=BC=80=E4=BF=AE=E6=94=B9=E5=8F=97?= =?UTF-8?q?=E6=8E=A7=EF=BC=8C=E6=9C=AC=E5=9C=B0=E8=B0=83=E8=AF=95=EF=BC=8C?= =?UTF-8?q?=E6=89=8B=E5=8A=A8=E6=B3=A8=E9=87=8A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/Template/HandleFormItem.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Template/HandleFormItem.vue b/src/components/Template/HandleFormItem.vue index f32c83e..38d6dad 100644 --- a/src/components/Template/HandleFormItem.vue +++ b/src/components/Template/HandleFormItem.vue @@ -354,7 +354,7 @@ export default { const isSame = this.isEqual(this.oldValue, this.inputValue); if (this.oldValue && !isSame && this.templateFillType === "actFill") { this.$refs.editSignRef.show() - this.handleUpdateRecord(); + // this.handleUpdateRecord(); }else{//如果是第一次填写,不需要密码验证 this.handleUpdateRecord() }