【代码修复】 Simple 设计器缩小留白问题
parent
21fc3fd7e6
commit
13272c2293
|
@ -1,5 +1,5 @@
|
||||||
<template>
|
<template>
|
||||||
<div v-loading="loading">
|
<div v-loading="loading" class="overflow-auto">
|
||||||
<SimpleProcessModel
|
<SimpleProcessModel
|
||||||
v-if="processNodeTree"
|
v-if="processNodeTree"
|
||||||
:flow-node="processNodeTree"
|
:flow-node="processNodeTree"
|
||||||
|
|
|
@ -1,8 +1,5 @@
|
||||||
<template>
|
<template>
|
||||||
<div
|
<div class="simple-process-model-container position-relative">
|
||||||
class="simple-process-model-container position-relative"
|
|
||||||
:style="`transform: scale(${scaleValue / 100});`"
|
|
||||||
>
|
|
||||||
<div class="position-absolute top-0px right-0px bg-#fff">
|
<div class="position-absolute top-0px right-0px bg-#fff">
|
||||||
<el-row type="flex" justify="end">
|
<el-row type="flex" justify="end">
|
||||||
<el-button-group key="scale-control" size="default">
|
<el-button-group key="scale-control" size="default">
|
||||||
|
@ -22,7 +19,9 @@
|
||||||
>
|
>
|
||||||
</el-row>
|
</el-row>
|
||||||
</div>
|
</div>
|
||||||
<ProcessNodeTree v-if="processNodeTree" v-model:flow-node="processNodeTree" />
|
<div class="simple-process-model" :style="`transform: scale(${scaleValue / 100});`">
|
||||||
|
<ProcessNodeTree v-if="processNodeTree" v-model:flow-node="processNodeTree" />
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<Dialog v-model="errorDialogVisible" title="保存失败" width="400" :fullscreen="false">
|
<Dialog v-model="errorDialogVisible" title="保存失败" width="400" :fullscreen="false">
|
||||||
<div class="mb-2">以下节点内容不完善,请修改后保存</div>
|
<div class="mb-2">以下节点内容不完善,请修改后保存</div>
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue