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.triggerLoading = false;
this.popoverVisible = false; this.popoverVisible = false;
}) })
this.crud.toQuery()
}, },
onPopoverHide() { onPopoverHide() {
this.triggerLoading = false; this.triggerLoading = false;

View File

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

View File

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