From 99aac7d0dad29629ab6beed723c112c733358fc1 Mon Sep 17 00:00:00 2001
From: "Mr.Z" <709235321@qq.com>
Date: Thu, 19 Aug 2021 14:50:54 +0800
Subject: [PATCH] =?UTF-8?q?=E5=88=86=E8=A7=A3=E5=8D=95=E5=88=86=E9=A1=B5?=
=?UTF-8?q?=E5=9B=9E=E6=98=BE=E4=BB=A5=E5=8F=8A=E5=88=86=E9=A1=B5?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../details/otherStandardDetails/index.vue | 100 +++++++++---------
1 file changed, 52 insertions(+), 48 deletions(-)
diff --git a/src/pages/details/otherStandardDetails/index.vue b/src/pages/details/otherStandardDetails/index.vue
index 99e9ee793..398c2b577 100644
--- a/src/pages/details/otherStandardDetails/index.vue
+++ b/src/pages/details/otherStandardDetails/index.vue
@@ -425,7 +425,7 @@
更多
-
+
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
-
-
+
+
@@ -819,9 +819,9 @@
+ :title="standShowItemEO.readContent ? standShowItemEO.readContent.replace(/<.*?>/ig, ' ') : ''">
{{
- standShowItemEO.interpretationContent ? standShowItemEO.interpretationContent.replace(/<.*?>/ig, ' ') : ''
+ standShowItemEO.readContent ? standShowItemEO.readContent.replace(/<.*?>/ig, ' ') : ''
}}
@@ -852,51 +852,51 @@
- {{standShowItemEO.dutyEngineer }}
+ {{ standShowItemEO.dutyEngineer }}
- {{standShowItemEO.comparedWithPrevious }}
+ {{ standShowItemEO.comparedWithPrevious }}
- {{standShowItemEO.complianceRequire }}
+ {{ standShowItemEO.complianceRequire }}
- {{standShowItemEO.complianceState }}
+ {{ standShowItemEO.complianceState }}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
@@ -1251,6 +1251,7 @@ export default {
knowIdList: '',
total7: 0,
page7: 1,
+ pageSize7: this.$store.getters.userInfo.configContent,
addForm: {
title: '',
content: '',
@@ -1772,7 +1773,7 @@ export default {
this.page7 = page
this.selectSarStandItems()
},
- pageSizeChange7(pageSize){
+ pageSizeChange7(pageSize) {
this.pageSize7 = pageSize
this.selectSarStandItems()
},
@@ -2099,7 +2100,7 @@ export default {
console.log("pageSize");
console.log(pageSize);
// this.standItemSearch.pageSize = this.$store.getters.userInfo.configContent
- this.standItemSearch.pageSize =pageSize;
+ this.standItemSearch.pageSize = pageSize;
this.selectSarStandItems()
// 此处需要调用接口,修改个人配置
},
@@ -2331,12 +2332,15 @@ export default {
selectSarStandItems(id, flag) {
this.standItemSearch.standId = this.sarStandardsInfoEO.id
this.standItemSearch.fileType = this.fileType
- this.$http.get('SarStandItems/sar-stand-items/querySarItemAndInterpretation', this.standItemSearch, {}, res => {
+ this.$http.get('SarStandItems/sar-stand-items/querySarItemAndInterpretation', {
+ ...this.standItemSearch,
+ pageSize: this.pageSize7, page: this.page7,
+ }, {}, res => {
this.selectedItemList = []
if (res.ok) {
- this.standItemList = res.data;
+ this.standItemList = res.data.list;
console.log(res.data);
- this.total7 = res.data.length // 分页需要
+ this.total7 = res.data.count // 分页需要
}
}, e => {
})