diff --git a/src/pages/processCenter/pages/creatProcess/xmpg2/step1.vue b/src/pages/processCenter/pages/creatProcess/xmpg2/step1.vue index bcc6ae5a0..96029a19b 100644 --- a/src/pages/processCenter/pages/creatProcess/xmpg2/step1.vue +++ b/src/pages/processCenter/pages/creatProcess/xmpg2/step1.vue @@ -249,88 +249,89 @@ size="900px" custom-class="demo-drawer" > -
-
-
-
- - - - - - - - - - 查询 - - - - 清空 - - - -
+
+
+ +
+ type="selection" + width="55" + align="center" /> + {{$t('m.dataAcquisition')}}
@@ -359,6 +360,7 @@ export default { data() { return { disabledXX:!!this.$route.query.disabledXX, + replaceLoading: false, active: "1", //当前选中的type isSubmit: false, saveLoading: false, @@ -478,9 +480,10 @@ export default { }, //获取项目数据 getProjectData() { + this.replaceLoading = true this.$http.get("sarStandProjectLibrary/queryProjectWorkFlow", { - page: this.page, - pageSize: this.pageSize, + Page: this.page, + PageSize: this.pageSize, ...this.projectSearch }, { _this: this @@ -492,6 +495,7 @@ export default { this.ProjectDatas = res.data.Maintenance.records; this.total = res.data.Maintenance.total; } + this.replaceLoading = false }); }, @@ -826,6 +830,26 @@ export default { } } + .standard-content { + height: 100%; + 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; + } + } + } + } .demo-drawer-content { margin-top: 10px; }