From 8a266fe78d6f0ee82f8c71f239666dfdc065e2d0 Mon Sep 17 00:00:00 2001 From: likexuan Date: Thu, 17 Nov 2022 11:41:49 +0800 Subject: [PATCH 1/3] =?UTF-8?q?NEZ-2402=20fix=20:=20=E6=96=B0=E5=BB=BAIPAM?= =?UTF-8?q?=E9=80=89=E6=8B=A9=E6=95=B0=E6=8D=AE=E5=90=8E=E5=BF=85=E5=A1=AB?= =?UTF-8?q?=E9=A1=B9=E6=8F=90=E7=A4=BA=E6=A1=86=E6=9C=AA=E6=B6=88=E5=A4=B1?= =?UTF-8?q?=EF=BC=8C=E6=95=B0=E6=8D=AE=E5=8F=AF=E4=BB=A5=E4=BF=9D=E5=AD=98?= =?UTF-8?q?=E6=88=90=E5=8A=9F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- nezha-fronted/src/components/common/rightBox/ipamBox.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nezha-fronted/src/components/common/rightBox/ipamBox.vue b/nezha-fronted/src/components/common/rightBox/ipamBox.vue index 198fc6006..f71b70cf4 100644 --- a/nezha-fronted/src/components/common/rightBox/ipamBox.vue +++ b/nezha-fronted/src/components/common/rightBox/ipamBox.vue @@ -132,7 +132,7 @@ export default { { required: true, message: this.$t('validate.required'), trigger: 'blur' } ], 'dc.name': [ - { required: true, message: this.$t('validate.required'), trigger: 'blur' } + { required: true, message: this.$t('validate.required'), trigger: 'change' } ] }, dcData: [] From 77b27c9c9238d3a60563dcd21f7c7a88ac33fd11 Mon Sep 17 00:00:00 2001 From: likexuan Date: Thu, 17 Nov 2022 13:36:09 +0800 Subject: [PATCH 2/3] =?UTF-8?q?NEZ-2403=20fix=20:=20=E5=BB=BA=E8=AE=AEAgen?= =?UTF-8?q?t=E6=96=B0=E5=BB=BA=E6=97=B6Token=E5=8F=AF=E4=BB=A5=E5=A2=9E?= =?UTF-8?q?=E5=8A=A0=E5=BF=85=E5=A1=AB=E9=A1=B9=E6=A0=87=E8=AF=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- nezha-fronted/src/components/common/rightBox/agentBox.vue | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/nezha-fronted/src/components/common/rightBox/agentBox.vue b/nezha-fronted/src/components/common/rightBox/agentBox.vue index 517cb84aa..d624de58b 100644 --- a/nezha-fronted/src/components/common/rightBox/agentBox.vue +++ b/nezha-fronted/src/components/common/rightBox/agentBox.vue @@ -119,6 +119,12 @@ export default { ], type: [ { required: true, message: this.$t('validate.required'), trigger: 'change' } + ], + token: [ + { required: true, message: this.$t('validate.required'), trigger: 'blur' } + ], + protocol: [ + { required: true, message: this.$t('validate.required'), trigger: 'change' } ] }, editPromServer: {}, From b93c5b08111f607b3d6c49932c5143188aeade4e Mon Sep 17 00:00:00 2001 From: zhangshuai Date: Fri, 18 Nov 2022 10:09:15 +0800 Subject: [PATCH 3/3] =?UTF-8?q?fix:=20=E5=88=A0=E9=99=A4dist=E4=B8=8B?= =?UTF-8?q?=E6=97=A0=E7=94=A8js=E6=96=87=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- nezha-fronted/build/webpack.prod.conf.js | 1 + 1 file changed, 1 insertion(+) diff --git a/nezha-fronted/build/webpack.prod.conf.js b/nezha-fronted/build/webpack.prod.conf.js index e0f678577..24144ddff 100644 --- a/nezha-fronted/build/webpack.prod.conf.js +++ b/nezha-fronted/build/webpack.prod.conf.js @@ -367,6 +367,7 @@ if (process.env.NODE_ENV == 'development') { { delete: [ path.join(__dirname, '../dist', '/config.json'), + path.join(__dirname, '../dist', '/*.js'), path.join(__dirname, '../.cache/') ] },