Browse Source

fix: 修复流程设计器中模态框加载问题

master
tony 3 years ago
parent
commit
1446dcb72c
  1. 1
      ruoyi-ui/src/components/Process/components/nodePanel/property/executionListener.vue
  2. 1
      ruoyi-ui/src/components/Process/components/nodePanel/property/listenerParam.vue
  3. 1
      ruoyi-ui/src/components/Process/components/nodePanel/property/multiInstance.vue
  4. 1
      ruoyi-ui/src/components/Process/components/nodePanel/property/signal.vue
  5. 1
      ruoyi-ui/src/components/Process/components/nodePanel/property/taskListener.vue
  6. 3
      ruoyi-ui/src/components/Process/components/nodePanel/task.vue

1
ruoyi-ui/src/components/Process/components/nodePanel/property/executionListener.vue

@ -2,6 +2,7 @@
<div>
<el-dialog
title="执行监听器"
:modal="false"
:visible.sync="dialogVisible"
width="900px"
:close-on-click-modal="false"

1
ruoyi-ui/src/components/Process/components/nodePanel/property/listenerParam.vue

@ -2,6 +2,7 @@
<div>
<el-dialog
title="监听器参数"
:modal="false"
:visible.sync="dialogVisible"
width="700px"
:close-on-click-modal="false"

1
ruoyi-ui/src/components/Process/components/nodePanel/property/multiInstance.vue

@ -2,6 +2,7 @@
<div>
<el-dialog
title="多实例配置"
:modal="false"
:visible.sync="dialogVisible"
width="600px"
:close-on-click-modal="false"

1
ruoyi-ui/src/components/Process/components/nodePanel/property/signal.vue

@ -2,6 +2,7 @@
<div>
<el-dialog
title="信号定义"
:modal="false"
:visible.sync="dialogVisible"
width="700px"
:close-on-click-modal="false"

1
ruoyi-ui/src/components/Process/components/nodePanel/property/taskListener.vue

@ -2,6 +2,7 @@
<div>
<el-dialog
title="任务监听器"
:modal="false"
:visible.sync="dialogVisible"
width="900px"
:close-on-click-modal="false"

3
ruoyi-ui/src/components/Process/components/nodePanel/task.vue

@ -71,6 +71,7 @@
<!--选择人员-->
<el-dialog
title="选择人员"
:modal="false"
:visible.sync="userVisible"
width="60%"
:close-on-press-escape="false"
@ -85,6 +86,7 @@
<!--选择表达式-->
<el-dialog
title="选择表达式"
:modal="false"
:visible.sync="expVisible"
width="60%"
:close-on-press-escape="false"
@ -99,6 +101,7 @@
<!--选择角色-->
<el-dialog
title="选择候选角色"
:modal="false"
:visible.sync="roleVisible"
width="60%"
:close-on-press-escape="false"

Loading…
Cancel
Save