|
@@ -134,7 +134,7 @@
|
|
|
>
|
|
|
</div>
|
|
|
<div class="flex1 ov-hidden">
|
|
|
- <el-scrollbar class="h-100p">
|
|
|
+ <el-scrollbar class="h-100p" v-if="isShowTree">
|
|
|
<div v-loading="treeLoad">
|
|
|
<el-tree
|
|
|
class="filter-tree"
|
|
@@ -2110,6 +2110,7 @@ export default {
|
|
|
searchtreeLoad: false,
|
|
|
|
|
|
treeLoad: false,
|
|
|
+ isShowTree: true,
|
|
|
menuShow: false,
|
|
|
defaultProps: {
|
|
|
children: "children",
|
|
@@ -3383,7 +3384,12 @@ export default {
|
|
|
message: "排序成功!",
|
|
|
});
|
|
|
this.sureSortload = false;
|
|
|
- this.getLazytreessss();
|
|
|
+ this.isShowTree = false;
|
|
|
+ setTimeout(() => {
|
|
|
+ this.isShowTree = true;
|
|
|
+ }, 100);
|
|
|
+ // window.location.reload();
|
|
|
+ // this.getLazytreessss();
|
|
|
}
|
|
|
},
|
|
|
async findWbsTreePrivateSameLevel(da) {
|
|
@@ -3800,6 +3806,11 @@ export default {
|
|
|
});
|
|
|
this.formDatass = da;
|
|
|
this.editElementFormTag = true;
|
|
|
+ }else{
|
|
|
+ this.$message({
|
|
|
+ type: "warning",
|
|
|
+ message: "当前列表无数据!",
|
|
|
+ });
|
|
|
}
|
|
|
},
|
|
|
editeditElementFormMF() {
|