From 9db5bc0a1838beb45a78db8d72f1502dda362e47 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E5=AE=8B=E4=BC=9F=E4=BD=B3?= <2797716443@qq.com>
Date: Mon, 21 Feb 2022 14:24:57 +0800
Subject: [PATCH 1/7] =?UTF-8?q?=E9=A1=B9=E7=9B=AE=E8=AF=84=E4=BC=B0?=
=?UTF-8?q?=E6=B5=81=E7=A8=8B=E4=BF=AE=E6=94=B9=E5=88=86=E9=A1=B5=E5=92=8C?=
=?UTF-8?q?=E8=B4=A3=E4=BB=BB=E4=BA=BAbug?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../processCenter/pages/creatProcess/xmpg/step1.vue | 7 ++++++-
.../processCenter/pages/creatProcess/xmpg/step3.vue | 4 ++++
.../processCenter/pages/creatProcess/xmpg/step5.vue | 12 ++++++------
3 files changed, 16 insertions(+), 7 deletions(-)
diff --git a/src/pages/processCenter/pages/creatProcess/xmpg/step1.vue b/src/pages/processCenter/pages/creatProcess/xmpg/step1.vue
index 5f47ce3fb..f234e079a 100644
--- a/src/pages/processCenter/pages/creatProcess/xmpg/step1.vue
+++ b/src/pages/processCenter/pages/creatProcess/xmpg/step1.vue
@@ -640,7 +640,11 @@ export default {
},
//查询项目下的标准
getStandData() {
- this.$http.get("sarStandProjectLibrary/queryStandInfo", { id: this.projectId }, {
+ this.$http.get("sarStandProjectLibrary/queryStandInfo", {
+ id: this.projectId,
+ current: this.pageNo,
+ PageSize: this.pageSizeNo
+ }, {
_this: this
}, res => {
res.data.records.forEach(item => {
@@ -649,6 +653,7 @@ export default {
}
})
this.standData = res.data.records;
+ this.totalNo = res.data.total
let ids = [];
this.standData.forEach(item => {
ids.push(item.standId);
diff --git a/src/pages/processCenter/pages/creatProcess/xmpg/step3.vue b/src/pages/processCenter/pages/creatProcess/xmpg/step3.vue
index bfef3b75e..cc5e6c159 100644
--- a/src/pages/processCenter/pages/creatProcess/xmpg/step3.vue
+++ b/src/pages/processCenter/pages/creatProcess/xmpg/step3.vue
@@ -769,6 +769,10 @@ export default {
if(index > -1){
dataListChildren.splice(index, 1)
}
+ dataListChildren.forEach(item => {
+ item.workPeople = this.$store.getters.userInfo.userName
+ item.workPeopleId = this.$store.getters.userInfo.userId
+ })
this.dataList = dataListChildren;
this.total = this.dataList.length;
} else {
diff --git a/src/pages/processCenter/pages/creatProcess/xmpg/step5.vue b/src/pages/processCenter/pages/creatProcess/xmpg/step5.vue
index fec5e76c9..9058c3e8f 100644
--- a/src/pages/processCenter/pages/creatProcess/xmpg/step5.vue
+++ b/src/pages/processCenter/pages/creatProcess/xmpg/step5.vue
@@ -465,13 +465,13 @@ export default {
dataListChildren = dataListChildren.concat(item);
});
dataListChildren = this.dataList.concat(dataListChildren);
- let index = dataListChildren.findIndex(item => {
- return item.people
+ let newDataListChildren = []
+ dataListChildren.forEach(item => {
+ if(!item.people){
+ newDataListChildren.push(item)
+ }
})
- if(index > -1){
- dataListChildren.splice(index, 1)
- }
- this.dataList = dataListChildren;
+ this.dataList = newDataListChildren;
this.total = this.dataList.length;
});
},
From ca7d96eb9500dd80d86fc0a939c3be0dd2f4e526 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E5=AE=8B=E4=BC=9F=E4=BD=B3?= <2797716443@qq.com>
Date: Mon, 21 Feb 2022 16:40:24 +0800
Subject: [PATCH 2/7] =?UTF-8?q?=E4=BF=AE=E6=94=B9bug?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/pages/details/complianceDetails/index.vue | 55 ++++++++++++++++++-
.../components/solicitopinions/index.vue | 11 +++-
src/pages/home2/index.vue | 3 -
3 files changed, 60 insertions(+), 9 deletions(-)
diff --git a/src/pages/details/complianceDetails/index.vue b/src/pages/details/complianceDetails/index.vue
index 4cb725b59..252f9d06a 100644
--- a/src/pages/details/complianceDetails/index.vue
+++ b/src/pages/details/complianceDetails/index.vue
@@ -1,7 +1,7 @@
- 暂无评估结果
+ 暂无评估结果
不满足
+
+ 不涉及
+
+
+
+
+
+
+
+
+
+ {{ scope.row.evaluationTime ? $moment(scope.row.evaluationTime).format('YYYY-MM-DD') : '' }}
+
+
+
加载中...
@@ -118,6 +160,7 @@ export default {
loading: false,
fit: [], // 满足
unfit: [], // 不满足
+ noFit: [], //不涉及
page: 1,
pageSize: this.$store.getters.userInfo.configContent,
total: 0,
@@ -152,6 +195,12 @@ export default {
item.standNumber = item.standardItem
}
})
+ this.noFit = res.data.noFit.records
+ this.noFit.forEach(item => {
+ if(item.standardItem){
+ item.standNumber = item.standardItem
+ }
+ })
} else {
this.$message.warning(res.message)
}
diff --git a/src/pages/home2/components/solicitopinions/index.vue b/src/pages/home2/components/solicitopinions/index.vue
index c01a2fe4e..882219024 100644
--- a/src/pages/home2/components/solicitopinions/index.vue
+++ b/src/pages/home2/components/solicitopinions/index.vue
@@ -32,11 +32,16 @@
+ prop="endTime"
+ width="120"
+ label="结束时间">
+
+ 更多 ⋙
+
diff --git a/src/pages/home2/index.vue b/src/pages/home2/index.vue
index bb26a0be7..482136a58 100644
--- a/src/pages/home2/index.vue
+++ b/src/pages/home2/index.vue
@@ -22,9 +22,6 @@
-
- 更多 ⋙
-
From faa510e0c87227d801c63e01d3b81df734429bae Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E5=AE=8B=E4=BC=9F=E4=BD=B3?= <2797716443@qq.com>
Date: Mon, 21 Feb 2022 17:01:07 +0800
Subject: [PATCH 3/7] =?UTF-8?q?=E9=A1=B9=E7=9B=AE=E8=AF=84=E4=BC=B0?=
=?UTF-8?q?=E6=B5=81=E7=A8=8B=E4=BF=AE=E6=94=B9=E4=BC=A0=E5=80=BC?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/pages/processCenter/pages/creatProcess/xmpg/step2.vue | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/src/pages/processCenter/pages/creatProcess/xmpg/step2.vue b/src/pages/processCenter/pages/creatProcess/xmpg/step2.vue
index 60ea457ae..f5f01c585 100644
--- a/src/pages/processCenter/pages/creatProcess/xmpg/step2.vue
+++ b/src/pages/processCenter/pages/creatProcess/xmpg/step2.vue
@@ -376,6 +376,13 @@ export default {
}
})
});
+ this.dataList.forEach(item => {
+ if(item.children){
+ item.children.forEach(items => {
+ this.$set(items,'standType',item.standType)
+ })
+ }
+ })
} else {
this.listForm = item.form;
this.dataList = item.form.dataList;
From d8b12037d38431424543619237f1acad8ebc6c41 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E5=AE=8B=E4=BC=9F=E4=BD=B3?= <2797716443@qq.com>
Date: Mon, 21 Feb 2022 17:11:24 +0800
Subject: [PATCH 4/7] =?UTF-8?q?=E6=9C=AA=E7=AC=A6=E5=90=88=E9=A1=B9?=
=?UTF-8?q?=E6=95=B4=E6=94=B9=E8=AF=A6=E6=83=85=E8=B7=B3=E8=BD=AC?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../nonConfomity/pages/rectificationDatabase.vue | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/pages/regulatoryRepository/nonConfomity/pages/rectificationDatabase.vue b/src/pages/regulatoryRepository/nonConfomity/pages/rectificationDatabase.vue
index f36e327c4..c9933b533 100644
--- a/src/pages/regulatoryRepository/nonConfomity/pages/rectificationDatabase.vue
+++ b/src/pages/regulatoryRepository/nonConfomity/pages/rectificationDatabase.vue
@@ -1266,7 +1266,7 @@ export default {
let routeUrl = this.$router.resolve({
name: "OtherStandardDetails",
params: {
- id: item.id,
+ id: item.standId,
pageType: "INLAND_STAND"
}
});
From c0dfdb7b5f8bcaf3fa9ad75a16697d6ad77bdd17 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E5=AE=8B=E4=BC=9F=E4=BD=B3?= <2797716443@qq.com>
Date: Mon, 21 Feb 2022 17:21:16 +0800
Subject: [PATCH 5/7] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=B8=85=E5=8D=95bug?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../pages/addEdit.vue | 1 +
.../pages/details.vue | 497 ++++++++++++++----
.../pages/details.vue | 1 +
.../pages/standInvolveProjectDetail.vue | 1 +
4 files changed, 400 insertions(+), 100 deletions(-)
diff --git a/src/pages/regulatoryRepository/accessStandardsAndRegulations/pages/addEdit.vue b/src/pages/regulatoryRepository/accessStandardsAndRegulations/pages/addEdit.vue
index 8e22d49a5..c2410f783 100644
--- a/src/pages/regulatoryRepository/accessStandardsAndRegulations/pages/addEdit.vue
+++ b/src/pages/regulatoryRepository/accessStandardsAndRegulations/pages/addEdit.vue
@@ -1096,6 +1096,7 @@ export default {
// 点数据搜索 查询按钮 事件
searchLawsStands() {
this.showTableFlag = false
+ this.sarAccessInfo.page = 1
this.selectLawsStands()
},
// 点击清空查询条件 按钮事件
diff --git a/src/pages/regulatoryRepository/accessStandardsAndRegulations/pages/details.vue b/src/pages/regulatoryRepository/accessStandardsAndRegulations/pages/details.vue
index af8bb3d17..d5a8ab8c0 100644
--- a/src/pages/regulatoryRepository/accessStandardsAndRegulations/pages/details.vue
+++ b/src/pages/regulatoryRepository/accessStandardsAndRegulations/pages/details.vue
@@ -195,7 +195,7 @@
label="适用产品线">
-
@@ -235,91 +235,216 @@
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+ size="800px"
+ >
+
+
+
+ 基础信息
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ opt.label }}
+
+
+
+
+
+ {{ opt.label }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 日期选择
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -329,12 +454,33 @@