diff --git a/src/pages/details/otherStandardDetails/index.vue b/src/pages/details/otherStandardDetails/index.vue
index 6b191d902..1ae32f44e 100644
--- a/src/pages/details/otherStandardDetails/index.vue
+++ b/src/pages/details/otherStandardDetails/index.vue
@@ -621,16 +621,22 @@
数据加载中...
+
-
-
+
+
+
+
+
+
+
+
+
+
@@ -1243,6 +1249,8 @@ export default {
knowType: '',
KnowTitle: '',
knowIdList: '',
+ total7: 0,
+ page7: 1,
addForm: {
title: '',
content: '',
@@ -1759,6 +1767,15 @@ export default {
this.knowId = ''
this.AddKnowledgDialog = false
},
+ //查看分解单分页
+ pageChange7(page) {
+ this.page7 = page
+ this.selectSarStandItems()
+ },
+ pageSizeChange7(pageSize){
+ this.pageSize7 = pageSize
+ this.selectSarStandItems()
+ },
// 知识点分页
pageChange1(page) {
this.pageNo = page
@@ -2317,12 +2334,9 @@ export default {
this.$http.get('SarStandItems/sar-stand-items/querySarItemAndInterpretation', this.standItemSearch, {}, res => {
this.selectedItemList = []
if (res.ok) {
- this.standItemList = res.data.list;
- console.log("standItemList");
- console.log(this.standItemList);
- console.log("res.data");
+ this.standItemList = res.data;
console.log(res.data);
- this.standitemTotal = res.data.count // 分页需要
+ this.total7 = res.data.length // 分页需要
}
}, e => {
})