From c8ecc8395edccde283061e12e6b6988558abd893 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AE=8B=E4=BC=9F=E4=BD=B3?= <2797716443@qq.com> Date: Wed, 27 Apr 2022 09:20:24 +0800 Subject: [PATCH 1/3] =?UTF-8?q?52688=20[=E7=BA=BF=E4=B8=8A]=E7=82=B9?= =?UTF-8?q?=E5=87=BB=E6=B8=85=E5=8D=95=20=E6=A0=87=E5=87=86=E5=8F=B7=20?= =?UTF-8?q?=E8=B7=B3=E8=BD=AC=E6=9C=89=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../accessStandardsAndRegulations/pages/addEdit.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/regulatoryRepository/accessStandardsAndRegulations/pages/addEdit.vue b/src/pages/regulatoryRepository/accessStandardsAndRegulations/pages/addEdit.vue index 01e4fc42b..39c88fb6f 100644 --- a/src/pages/regulatoryRepository/accessStandardsAndRegulations/pages/addEdit.vue +++ b/src/pages/regulatoryRepository/accessStandardsAndRegulations/pages/addEdit.vue @@ -2148,7 +2148,7 @@ export default { let routeUrl = this.$router.resolve({ name: routerName, params: { - id: data.id, + id: data.id || data.standId, pageType: this.sarAccessInfo.dataSource } }) From b302f25605482851d3e1fcb3c14d6deee23813a1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AE=8B=E4=BC=9F=E4=BD=B3?= <2797716443@qq.com> Date: Wed, 27 Apr 2022 09:29:08 +0800 Subject: [PATCH 2/3] =?UTF-8?q?52684=20[=E7=BA=BF=E4=B8=8A]=E6=A0=87?= =?UTF-8?q?=E5=87=86=E5=85=A5=E5=BA=93=E6=B5=81=E7=A8=8B-=E5=9B=BD?= =?UTF-8?q?=E5=86=85=E5=85=A5=E5=BA=93-=E6=89=B9=E5=87=86=E8=8A=82?= =?UTF-8?q?=E7=82=B9=20=E8=BD=AC=E5=8A=9E=E5=AE=8C=E6=88=90=E5=90=8E=20?= =?UTF-8?q?=E9=A1=B5=E9=9D=A2=E9=80=80=E5=9B=9E=E5=BE=85=E5=8A=9E?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/processCenter/pages/creatProcess/bzrk/step2.vue | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/pages/processCenter/pages/creatProcess/bzrk/step2.vue b/src/pages/processCenter/pages/creatProcess/bzrk/step2.vue index 574e5120e..0de1caa95 100644 --- a/src/pages/processCenter/pages/creatProcess/bzrk/step2.vue +++ b/src/pages/processCenter/pages/creatProcess/bzrk/step2.vue @@ -1015,9 +1015,7 @@ export default { if (res.success) { this.drawerModal = false this.$message.success('调整成功') - this.processNum() - this.queryProcess() - this.$router.push({path: '/processCenter?tabsName=ProcessCenter'}) + this.$router.push("/processCenter"); } else { this.$message.warning(res.message) } From 2933734ed5073b6b607a3e55718d5b6f62ce024a Mon Sep 17 00:00:00 2001 From: super_liu <396572590@qq.com> Date: Wed, 27 Apr 2022 10:17:22 +0800 Subject: [PATCH 3/3] feat: There is no way the, AWC --- src/App.vue | 3 ++- src/pages/loginStandDetails/index.vue | 26 ++++++++++++++++++++------ 2 files changed, 22 insertions(+), 7 deletions(-) diff --git a/src/App.vue b/src/App.vue index 369bd74f9..5f708da1c 100644 --- a/src/App.vue +++ b/src/App.vue @@ -218,7 +218,8 @@ export default { && this.$route.name !== 'StandardSearch' && this.$route.name !== 'phoneIndex' && this.$route.name !== 'AdvancedSearchExternal' && this.$route.name !== 'LoginVerifyNoEncryption' && this.$route.name !== 'blankPage' && this.$route.name !== 'processedPage' - && this.$route.name !== 'loginStandDetails' && this.$route.name !== 'error') { + && this.$route.name !== 'loginStandDetails' && this.$route.name !== 'error' + && this.$route.name !== 'OtherStandardExternalDetails' && this.$route.name !== 'OtherStandardExternalDetails') { this.isBoolean = true } else { this.isBoolean = false diff --git a/src/pages/loginStandDetails/index.vue b/src/pages/loginStandDetails/index.vue index 22679b85f..5f1bcba6d 100644 --- a/src/pages/loginStandDetails/index.vue +++ b/src/pages/loginStandDetails/index.vue @@ -109,27 +109,41 @@ _this: this }, res =>{ if(res){ - let routeUrl = this.$router.resolve({ + this.$router.push({ name: routerName, params: { id: dataId, pageType: pageType } - }); - window.open(routeUrl.href, "_blank"); + }) + // let routeUrl = this.$router.resolve({ + // name: routerName, + // params: { + // id: dataId, + // pageType: pageType + // } + // }); + // this.$router.push(routeUrl.href) }else{ this.$message.warning('您暂无权限查看') } }) }else { - let routeUrl = this.$router.resolve({ + // let routeUrl = this.$router.resolve({ + // name: routerName, + // params: { + // id: dataId, + // pageType: pageType + // } + // }); + this.$router.push({ name: routerName, params: { id: dataId, pageType: pageType } - }); - window.open(routeUrl.href, "_blank"); + }) + // window.open(routeUrl.href, "_blank"); } } }, e => {