From b6cdda5d6a5750a4ba6614341a9bc883f597bbd8 Mon Sep 17 00:00:00 2001 From: yanyizhou <2311759275@qq.com> Date: Thu, 12 Aug 2021 17:51:12 +0800 Subject: [PATCH 1/4] =?UTF-8?q?=E9=9B=B6=E9=83=A8=E4=BB=B6=E7=BC=96?= =?UTF-8?q?=E5=8F=B7=E7=94=B3=E8=AF=B7=E6=A8=A1=E5=9D=97=E5=BC=80=E5=8F=91?= =?UTF-8?q?=E5=AE=8C=E6=AF=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/navMenu/index.vue | 14 +- .../details/otherStandardDetails/index.vue | 8 +- .../partCodeApply/index.vue | 306 +++++++++++++++--- 3 files changed, 267 insertions(+), 61 deletions(-) diff --git a/src/components/navMenu/index.vue b/src/components/navMenu/index.vue index c26c24ebd..c1a7bfcb4 100644 --- a/src/components/navMenu/index.vue +++ b/src/components/navMenu/index.vue @@ -88,11 +88,11 @@ export default { path: '/domesticStandardsAndRegulations', menuId: '3e3657498664beaa0dc1de1ecb3ae0da' }, - // { - // title: '零部件编号申请', - // path: '/partCodeApply', - // menuId: '' - // }, + { + title: '零部件编号申请', + path: '/partCodeApply', + menuId: 'ad9db496772c075f78495382b7581fe9' + }, // { // title: '标准法规工作组数据统计', // path: '/dataStatisComments', @@ -310,11 +310,11 @@ export default { // path: '/convertDocView', // menuId: '3F52K25546' // }, - /*{ + { title: '菜单管理', path: '/menuManage', menuId: '87b8b4f5817a7829696e63185c744d52' - },*/ + }, { title: '链接管理', path: '/linkManage', diff --git a/src/pages/details/otherStandardDetails/index.vue b/src/pages/details/otherStandardDetails/index.vue index b472b7646..362c13083 100644 --- a/src/pages/details/otherStandardDetails/index.vue +++ b/src/pages/details/otherStandardDetails/index.vue @@ -539,7 +539,7 @@ prop="termsConditions" label="解读内容" show-overflow-tooltip - :resizable="false" + > - From 36a514d3c83733ca5a927726402b1b762fddefc5 Mon Sep 17 00:00:00 2001 From: zhutianqi Date: Thu, 12 Aug 2021 17:54:08 +0800 Subject: [PATCH 2/4] commit --- .../pages/standInvolveProjectDetail.vue | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/src/pages/regulatoryRepository/localProductsOrProjectLibrary/pages/standInvolveProjectDetail.vue b/src/pages/regulatoryRepository/localProductsOrProjectLibrary/pages/standInvolveProjectDetail.vue index a379be0c5..5c55a6950 100644 --- a/src/pages/regulatoryRepository/localProductsOrProjectLibrary/pages/standInvolveProjectDetail.vue +++ b/src/pages/regulatoryRepository/localProductsOrProjectLibrary/pages/standInvolveProjectDetail.vue @@ -379,8 +379,12 @@ export default { this.standId = row.standId; this.querySarProStateZero(); }, // 查看项目符合性 - querySarProStateZero() { - this.sarProStateTotalPage = 1; + querySarProStateZero(page) { + if (page) { + this.sarProStateTotalPage = page + } else { + this.sarProStateTotalPage = 1; + } var form = this.sarProStateEO; // form.standId = this.standId form.current = this.sarProStateTotalPage; @@ -416,12 +420,12 @@ export default { }, // 关闭查看事件 pageProStateChange(page) { this.sarProStateTotalPage = page; - this.querySarProStateZero(); + this.querySarProStateZero(page); }, pageProStateSizeChange(pageSize) { this.sarProStatePageSize = pageSize; this.$store.getters.userInfo.configContent = pageSize; - this.querySarProStateZero(); + this.querySarProStateZero(1); } }, mounted() { From 2f71741baf672ae58b468adfbb1d0784662ef00c Mon Sep 17 00:00:00 2001 From: yanyizhou <2311759275@qq.com> Date: Thu, 12 Aug 2021 17:55:41 +0800 Subject: [PATCH 3/4] commit --- src/components/navMenu/index.vue | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/components/navMenu/index.vue b/src/components/navMenu/index.vue index c1a7bfcb4..56cf10aca 100644 --- a/src/components/navMenu/index.vue +++ b/src/components/navMenu/index.vue @@ -310,11 +310,11 @@ export default { // path: '/convertDocView', // menuId: '3F52K25546' // }, - { - title: '菜单管理', - path: '/menuManage', - menuId: '87b8b4f5817a7829696e63185c744d52' - }, + // { + // title: '菜单管理', + // path: '/menuManage', + // menuId: '87b8b4f5817a7829696e63185c744d52' + // }, { title: '链接管理', path: '/linkManage', From de2f8c1fc3e7d811e72cc735e930137fa5e1910f Mon Sep 17 00:00:00 2001 From: "Mr.Z" <709235321@qq.com> Date: Thu, 12 Aug 2021 18:31:05 +0800 Subject: [PATCH 4/4] =?UTF-8?q?=E6=A0=87=E5=87=86=E6=8B=86=E5=88=86--?= =?UTF-8?q?=E6=8B=86=E5=88=86=E9=A1=B5=E9=9D=A2=E5=92=8C=E5=88=97=E8=A1=A8?= =?UTF-8?q?=E9=A1=B5=E9=9D=A2=E7=82=B9=E5=87=BB=E6=A0=87=E5=87=86=E5=8F=B7?= =?UTF-8?q?=E3=80=81=E6=A0=87=E5=87=86=E5=90=8D=E7=A7=B0=E5=BA=94=E8=AF=A5?= =?UTF-8?q?=E8=B7=B3=E8=BD=AC=E8=87=B3=E8=AF=A5=E6=A0=87=E5=87=86=E7=9A=84?= =?UTF-8?q?=E8=AF=A6=E6=83=85=E9=A1=B5=E9=9D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../pages/standInvolveProjectDetail.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/regulatoryRepository/localProductsOrProjectLibrary/pages/standInvolveProjectDetail.vue b/src/pages/regulatoryRepository/localProductsOrProjectLibrary/pages/standInvolveProjectDetail.vue index 5c55a6950..9e53c7ad7 100644 --- a/src/pages/regulatoryRepository/localProductsOrProjectLibrary/pages/standInvolveProjectDetail.vue +++ b/src/pages/regulatoryRepository/localProductsOrProjectLibrary/pages/standInvolveProjectDetail.vue @@ -198,7 +198,7 @@