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 => {
})