feat: There is no way the,  56826 流程第三步骤,分发项目节点,点击添加按钮,显示数据不全

This commit is contained in:
396572590@qq.com
2022-08-04 17:55:10 +08:00
parent c507c9e3b7
commit aebd17682b
@@ -226,10 +226,9 @@
size="900px" size="900px"
custom-class="demo-drawer" custom-class="demo-drawer"
> >
<div class="demo-drawer-content"> <div class="standard-content">
<div style="position: absolute;bottom: 48px;top:60px;left: 0;right: 0"> <div class="content">
<div style="position: absolute;bottom: 55px;top: 0;right: 0;left: 0"> <div class="standard-table-search">
<div class="left">
<el-form :modal="projectSearch" :inline="true" class="label-input-form" style="margin-left:10px"> <el-form :modal="projectSearch" :inline="true" class="label-input-form" style="margin-left:10px">
<el-form-item label="管理主体" class="search-item search-item-last"> <el-form-item label="管理主体" class="search-item search-item-last">
<el-select v-model="projectSearch.managementHostName" <el-select v-model="projectSearch.managementHostName"
@@ -297,6 +296,7 @@
</el-form-item> </el-form-item>
</el-form> </el-form>
</div> </div>
<div class="standard-table-wrap">
<div style="height: calc(100% - 65px); "> <div style="height: calc(100% - 65px); ">
<div style="font-size: 16px; color: #FF7F50; padding-bottom: 10px; margin-left: 10px"> <div style="font-size: 16px; color: #FF7F50; padding-bottom: 10px; margin-left: 10px">
<p>如果各项目符合法规情况相同,可同时勾选,第一个勾选项目合规排查结果,将代表所有勾选项目合规排查结果。</p> <p>如果各项目符合法规情况相同,可同时勾选,第一个勾选项目合规排查结果,将代表所有勾选项目合规排查结果。</p>
@@ -346,6 +346,7 @@
label="项目经理"/> label="项目经理"/>
</el-table> </el-table>
</div> </div>
<loading :loading="replaceLoading">{{$t('m.dataAcquisition')}}</loading>
</div> </div>
<pagination <pagination
:page="pageNo" :page="pageNo"
@@ -410,6 +411,7 @@ export default {
return { return {
active: "1", active: "1",
//折叠的标志,true为折叠,false为不折叠 //折叠的标志,true为折叠,false为不折叠
replaceLoading: false,
foldFormFlag: false, foldFormFlag: false,
drawerModal: false, drawerModal: false,
loading: false, loading: false,
@@ -565,6 +567,7 @@ export default {
}, },
//查询项目群下的项目 //查询项目群下的项目
getProductData() { getProductData() {
this.replaceLoading = true
// 已维护 状态 1 , 为维护 状态 0 // 已维护 状态 1 , 为维护 状态 0
this.projectSearch.flag = '1' this.projectSearch.flag = '1'
this.$http.get("sarStandProjectLibrary/queryProjects", { this.$http.get("sarStandProjectLibrary/queryProjects", {
@@ -577,6 +580,7 @@ export default {
}, res => { }, res => {
this.productData = res.data.records; this.productData = res.data.records;
this.totalNo = res.data.total; this.totalNo = res.data.total;
this.replaceLoading = false
}); });
}, },
//查询项目按钮 //查询项目按钮
@@ -918,6 +922,26 @@ export default {
overflow-y: hidden; overflow-y: hidden;
} }
} }
.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 { .demo-drawer-content {
margin-top: 10px; margin-top: 10px;
} }