diff --git a/src/pages/processCenter/pages/creatProcess/xmqdqr/step1.vue b/src/pages/processCenter/pages/creatProcess/xmqdqr/step1.vue index 6b41912b7..b9103c71d 100644 --- a/src/pages/processCenter/pages/creatProcess/xmqdqr/step1.vue +++ b/src/pages/processCenter/pages/creatProcess/xmqdqr/step1.vue @@ -232,122 +232,127 @@ size="900px" custom-class="demo-drawer" > -
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - 查询 - - - - 清空 - - - -
- +
+ +
+
+
+
+ - - - - - - + @selection-change="selectProjectChange" + @select="handleSelectionChange" + ref="projectSelection" + > + + + + + + +
+ {{$t('m.dataAcquisition')}}
@@ -770,6 +775,7 @@ export default { }, data() { return { + replaceLoading: false, disabledXX:!!this.$route.query.disabledXX, //折叠的标志,true为折叠,false为不折叠 foldFormFlag: false, @@ -1126,6 +1132,7 @@ export default { }, //查询项目列表 getProjectData() { + this.replaceLoading = true this.$http.get("sarStandProjectLibrary/queryProjectConfirm", { PageSize: this.pageSize, Page: this.page, @@ -1135,8 +1142,9 @@ export default { }, res => { this.ProjectDatas = res.data.total.records; this.total = res.data.total.total; + this.replaceLoading = false }, e => { - + this.replaceLoading = false }); }, //清空查询列表 @@ -1542,10 +1550,6 @@ export default { } } } - .table-height{ - height: calc(~'100% - 65px'); - overflow: auto; - } .drawer-table{ /deep/.el-drawer__body{ overflow-y: hidden; @@ -1554,6 +1558,26 @@ export default { overflow-y: hidden; } } + .standard-content { + height: 92%; + padding: 10px 0 0; + .content { + height: 100%; + display: flex; + flex-direction: column; + padding: 0 10px; + .standard-table-wrap { + flex: auto; + overflow-y: auto; + } + .pagination { + position: static; + /deep/ .pagination-slot { + padding: 0; + } + } + } + } }