fix: 打开工作流设置后无法关闭桌面客户端的问题

This commit is contained in:
kuaifan 2023-08-05 16:56:25 +08:00
parent 7e5bbb4bb7
commit 2b3d5ff223

View File

@ -1391,6 +1391,10 @@ export default {
workflowBeforeClose() {
return new Promise(resolve => {
if (!this.$refs.workflow) {
resolve();
return;
}
if (!this.$refs.workflow.existDiff()) {
resolve()
return