From 43e68e2088724342131d7e29649419d82d667a36 Mon Sep 17 00:00:00 2001 From: hanshaozhuang Date: Thu, 23 Jun 2022 14:17:19 +0800 Subject: [PATCH 1/3] =?UTF-8?q?=E4=BF=AE=E6=94=B9bug=2055683=20=E3=80=90?= =?UTF-8?q?=E7=BA=BF=E4=B8=8A=E3=80=91=E6=A0=87=E5=87=86=E5=85=A5=E5=BA=93?= =?UTF-8?q?=E6=B5=81=E7=A8=8B=EF=BC=8C=E6=B5=B7=E5=A4=96=E6=A0=87=E5=87=86?= =?UTF-8?q?=EF=BC=8C=E8=8D=89=E7=A8=BF=E9=87=8C=E8=BF=9B=E5=8E=BB=E7=9A=84?= =?UTF-8?q?=EF=BC=8C=E5=9B=BD=E5=AE=B6=E5=9C=B0=E5=8C=BA=E6=98=BE=E7=A4=BA?= =?UTF-8?q?=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/processCenter/pages/creatProcess/bzrk/step1.vue | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/pages/processCenter/pages/creatProcess/bzrk/step1.vue b/src/pages/processCenter/pages/creatProcess/bzrk/step1.vue index 03be5748b..b9b90b73d 100644 --- a/src/pages/processCenter/pages/creatProcess/bzrk/step1.vue +++ b/src/pages/processCenter/pages/creatProcess/bzrk/step1.vue @@ -3464,10 +3464,6 @@ export default { }, }, mounted() { - this.bpnId = this.$route.query.bpnId - if (this.bpnId !== undefined) { - this.getTaskId() - } this.getTree() this.$http.get('sys/dictype/getDicTypeListCode', '', { _this: this @@ -3491,6 +3487,10 @@ export default { this.cbcdOptions = res.data.DEGREESTANDARD // 采标程度 this.txlbOptions = res.data.TXLBCLASS // 体系类别 this.setMap(this.standStateOptions) + this.bpnId = this.$route.query.bpnId + if (this.bpnId !== undefined) { + this.getTaskId() + } }) this.busVsFunc() this.modelFunc() From 13d2759827121204e0a63dc3b586cdbba53a535f Mon Sep 17 00:00:00 2001 From: hanshaozhuang Date: Thu, 23 Jun 2022 14:39:49 +0800 Subject: [PATCH 2/3] =?UTF-8?q?=E4=BF=AE=E6=94=B9bug=2055952=20=E3=80=9030?= =?UTF-8?q?=E5=8F=B7=E9=9C=80=E8=A7=A3=E5=86=B3=E9=97=AE=E9=A2=98=E3=80=91?= =?UTF-8?q?6.7=20=E5=A6=82=E6=9E=9C=E6=9C=89=E4=B8=AD=E6=96=87=E5=90=8D?= =?UTF-8?q?=E7=A7=B0=E5=B0=B1=E5=8F=AA=E6=98=BE=E7=A4=BA=E4=B8=AD=E6=96=87?= =?UTF-8?q?=E5=90=8D=E7=A7=B0=EF=BC=8C=E5=A6=82=E6=9E=9C=E6=B2=A1=E6=9C=89?= =?UTF-8?q?=E4=B8=AD=E6=96=87=E5=90=8D=E7=A7=B0=EF=BC=8C=E5=B0=B1=E6=98=BE?= =?UTF-8?q?=E7=A4=BA=E8=8B=B1=E6=96=87=E5=90=8D=E7=A7=B0=E3=80=82=E8=8D=89?= =?UTF-8?q?=E6=A1=88=E3=80=81=E6=AD=A3=E5=BC=8F=E6=96=87=E6=9C=AC=E8=A6=81?= =?UTF-8?q?=E5=90=88=E5=B9=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/details/otherBussStandardDetails/index.vue | 2 +- src/pages/details/otherStandardDetails/index.vue | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pages/details/otherBussStandardDetails/index.vue b/src/pages/details/otherBussStandardDetails/index.vue index e6509d179..ce4b62ae6 100644 --- a/src/pages/details/otherBussStandardDetails/index.vue +++ b/src/pages/details/otherBussStandardDetails/index.vue @@ -3,7 +3,7 @@
- {{sarStandardsInfoEO.standCode}} 《{{sarStandardsInfoEO.standName}}》 企标详情 + {{sarStandardsInfoEO.standCode}} 《{{sarStandardsInfoEO.standName ? sarStandardsInfoEO.standName : sarStandardsInfoEO.standEnName}}》 企标详情 {{ ((qualityCommentScore*2*0.9)+(dynamicCommentScore*2*0.1)).toFixed(1) }} diff --git a/src/pages/details/otherStandardDetails/index.vue b/src/pages/details/otherStandardDetails/index.vue index cefcccc97..70e45f5a8 100644 --- a/src/pages/details/otherStandardDetails/index.vue +++ b/src/pages/details/otherStandardDetails/index.vue @@ -5,7 +5,7 @@
{{ sarStandardsInfoEO.standSortShow || '' }} {{ sarStandardsInfoEO.standNumber - }} 《{{ sarStandardsInfoEO.standName }}》 + }} 《{{ sarStandardsInfoEO.standName ? sarStandardsInfoEO.standName : sarStandardsInfoEO.standEnName }}》 {{ sarStandardsInfoEO.standSortShow || '' }} {{ sarStandardsInfoEO.standNumber }}-{{ sarStandardsInfoEO.standYear }} 《{{ sarStandardsInfoEO.standName }}》 From 369461df743f97b7d5218189de5cf7cd59e1f311 Mon Sep 17 00:00:00 2001 From: hanshaozhuang Date: Thu, 23 Jun 2022 15:50:06 +0800 Subject: [PATCH 3/3] =?UTF-8?q?=E4=BF=AE=E6=94=B9bug=2056008=20=E6=A0=87?= =?UTF-8?q?=E5=87=86=E8=A7=A3=E8=AF=BB=E6=B5=81=E7=A8=8B=20=E6=88=AA?= =?UTF-8?q?=E6=AD=A2=E6=97=A5=E6=9C=9F=E6=B2=A1=E5=A1=AB=E5=86=99=20?= =?UTF-8?q?=E5=9C=A8=E4=BA=BA=E5=91=98=E4=BF=A1=E6=81=AF=E7=95=8C=E9=9D=A2?= =?UTF-8?q?=E5=8F=AF=E4=BB=A5=E5=8F=91=E8=B5=B7=E6=B5=81=E7=A8=8B=EF=BC=8C?= =?UTF-8?q?=E5=BA=94=E8=AF=A5=E6=98=AF=E4=B8=8D=E5=8F=AF=E4=BB=A5=E5=8F=91?= =?UTF-8?q?=E8=B5=B7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/processCenter/pages/creatProcess/bzjd/step1.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/processCenter/pages/creatProcess/bzjd/step1.vue b/src/pages/processCenter/pages/creatProcess/bzjd/step1.vue index 02e7df1b0..f9bf983b4 100644 --- a/src/pages/processCenter/pages/creatProcess/bzjd/step1.vue +++ b/src/pages/processCenter/pages/creatProcess/bzjd/step1.vue @@ -22,7 +22,7 @@ -
+