From e697cfcca5961ce9824728817cce898fef93b32e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AE=8B=E4=BC=9F=E4=BD=B3?= <2797716443@qq.com> Date: Fri, 25 Mar 2022 17:40:29 +0800 Subject: [PATCH 1/2] =?UTF-8?q?=E7=A6=85=E9=81=93bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../domesticStandardsAndRegulations/index.vue | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/pages/regulatoryRepository/domesticStandardsAndRegulations/index.vue b/src/pages/regulatoryRepository/domesticStandardsAndRegulations/index.vue index 46523e1b6..7f760d98e 100644 --- a/src/pages/regulatoryRepository/domesticStandardsAndRegulations/index.vue +++ b/src/pages/regulatoryRepository/domesticStandardsAndRegulations/index.vue @@ -3718,6 +3718,7 @@ export default { }, // 搜索 getDomesticStandardTableBtn(item) { + sessionStorage.setItem('tableFlag', JSON.stringify(item)) this.tableFlag = item item.page = 1 this.getDomesticStandardTable(item) @@ -4492,7 +4493,8 @@ export default { // 分页每页显示数改变后方法 pageSizeChange(pageSize) { this.sarStandardsSearch.pageSize = this.$store.getters.userInfo.configContent - this.getDomesticStandardTable(this.tableFlag) + let tabFlag = JSON.parse(sessionStorage.getItem('tableFlag')) + this.getDomesticStandardTable(tabFlag) this.selectConfiguraStand() // 此处需要调用接口,修改个人配置 }, From b64b9f9da13327d56b9d94a8a51ee6ffd48f51e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AE=8B=E4=BC=9F=E4=BD=B3?= <2797716443@qq.com> Date: Fri, 25 Mar 2022 17:49:19 +0800 Subject: [PATCH 2/2] =?UTF-8?q?=E7=A6=85=E9=81=93bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../creatProcess/qbzxdjhgk/component/rename.vue | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/src/pages/processCenter/pages/creatProcess/qbzxdjhgk/component/rename.vue b/src/pages/processCenter/pages/creatProcess/qbzxdjhgk/component/rename.vue index 44c9314c1..5040111eb 100644 --- a/src/pages/processCenter/pages/creatProcess/qbzxdjhgk/component/rename.vue +++ b/src/pages/processCenter/pages/creatProcess/qbzxdjhgk/component/rename.vue @@ -427,18 +427,19 @@ export default { this.$http.post('esRevisePlan/es-revise-plan/queryAllPlans',{ reviseStatus: this.standardSearch.reviseStatus || '', esName: this.standardSearch.standName, + planStatus: '0', page: this.page, pageSize: this.pageSize, }, { _this: this, }, res => { - this.standinfoList = [] + this.standinfoList = res.data.list //展示的数据只能是未开始的 - res.data.list.forEach(item => { - if(item.planStatus === '0'){ - this.standinfoList.push(item) - } - }) + // res.data.list.forEach(item => { + // if(item.planStatus === '0'){ + // this.standinfoList.push(item) + // } + // }) this.total = this.standinfoList.length })