diff --git a/src/pages/details/otherStandardDetails/index.vue b/src/pages/details/otherStandardDetails/index.vue
index afc9a4ef2..3514f3266 100644
--- a/src/pages/details/otherStandardDetails/index.vue
+++ b/src/pages/details/otherStandardDetails/index.vue
@@ -418,28 +418,52 @@
trigger="click"
:value="false"
>
-
+
+
+
+
+
+
+
+
-
-
+
+
+
+
+
+
+
+
+
+
+
+
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -507,7 +531,7 @@
@@ -533,30 +557,30 @@
@@ -1247,15 +1271,13 @@ export default {
modalStandItemflag: false,
tableLoading: false,
standItemSearch: {
+ XCXSSRQ:'',
+ ZCCSSRQ:'',
standId: '',
fileType: '',
- responsibleUnit: '',
- orgName: '',
- validFlag: '0',
+ itemsName:'',
pageSize: this.$store.getters.userInfo.configContent,
page: 1,
- nameOrRequest: '',
- parts: ''
},
standitemTotal: 0,
searching: false,
@@ -2231,11 +2253,14 @@ export default {
selectSarStandItems (id, flag) {
this.standItemSearch.standId = this.sarStandardsInfoEO.id
this.standItemSearch.fileType = this.fileType
- this.$http.get('lawss/sarStandItems/getSarStandItemsList', this.standItemSearch, {
- _this: this, loading: 'tableLoading'
- }, res => {
+ this.$http.get('SarStandItems/sar-stand-items/querySarItemAndInterpretation', this.standItemSearch, {}, res => {
this.selectedItemList = []
- this.standItemList = res.data.list
+ if (res.ok) {
+ this.standItemList = res.data;
+ console.log("hello"+this.standItemList+res.data);
+ this.standitemTotal = res.data.count // 分页需要
+ }
+
// if (this.standItemList != null && this.standItemList.length > 0) {
// for (let ind = 0; ind < this.standItemList.length; ind++) {
// // 去掉html标签
@@ -2244,7 +2269,7 @@ export default {
// this.standItemList[ind].termsConditions = itemContent
// }
// }
- this.standitemTotal = res.data.count // 分页需要
+
}, e => {
})
},