rev:设计流程保存后刷新页面,触发按钮后刷新页面

This commit is contained in:
2024-05-23 17:42:28 +08:00
parent d0c7534090
commit ce1bce880b
3 changed files with 6 additions and 1 deletions

View File

@@ -256,6 +256,7 @@ export default {
this.triggerLoading = false;
this.popoverVisible = false;
})
this.crud.toQuery()
},
onPopoverHide() {
this.triggerLoading = false;

View File

@@ -135,7 +135,7 @@
<!--分页组件-->
<pagination/>
</div>
<FlowDesigner ref="flowDesigner"/>
<FlowDesigner ref="flowDesigner" @toQuery="toQuery"/>
<ViewFlowDesigner ref="viewFlowDesigner"/>
</div>
</template>
@@ -238,6 +238,9 @@ export default {
return true
}
return false
},
toQuery(){
this.crud.toQuery()
}
}
}

View File

@@ -323,6 +323,7 @@ export default {
type: 'success'
});
})
this.$emit('toQuery');
console.log(this.$data.graphData)
},
$_deleteData() {