From 0ee58b3e0c803963078d01c661ee0ef0292db036 Mon Sep 17 00:00:00 2001 From: hanshaozhuang Date: Mon, 18 Jul 2022 18:04:27 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9bug=2056635=20=E6=9C=AA?= =?UTF-8?q?=E7=AC=A6=E5=90=88=E9=A1=B9=E5=BA=93=E6=96=B0=E5=A2=9E=E9=A1=B5?= =?UTF-8?q?=E9=9D=A2=EF=BC=8C=E6=89=8B=E5=8A=A8=E6=9F=A5=E6=89=BE=E5=8B=BE?= =?UTF-8?q?=E9=80=89=E4=B8=80=E4=B8=AA=E6=B5=B7=E5=A4=96=E6=A0=87=E5=87=86?= =?UTF-8?q?=EF=BC=8C=E5=9B=9E=E6=98=BEnull=EF=BC=8C=E8=A7=81=E9=99=84?= =?UTF-8?q?=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../nonConfomity/pages/rectificationDatabase.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/pages/regulatoryRepository/nonConfomity/pages/rectificationDatabase.vue b/src/pages/regulatoryRepository/nonConfomity/pages/rectificationDatabase.vue index 9ec8c786a..34ea19738 100644 --- a/src/pages/regulatoryRepository/nonConfomity/pages/rectificationDatabase.vue +++ b/src/pages/regulatoryRepository/nonConfomity/pages/rectificationDatabase.vue @@ -883,7 +883,8 @@ export default { }else{ this.addForm.standId = this.standList[0].id this.addForm.standName = this.standList[0].standName - this.addForm.standSerialNumber = this.standList[0].standSort + '-' + this.standList[0].standNumber + '-' + this.standList[0].standYear + this.addForm.standSerialNumber = this.standList[0].standSort + '-' + this.standList[0].standNumber + this.addForm.standSerialNumber += this.standList[0].standYear ? '-' + this.standList[0].standYear : '' this.dialogTableVisible = false if(this.addForm.standName){ this.$refs.addForm.validateField('standName');