fix : 修复流程框点击bug

This commit is contained in:
2024-03-25 20:41:51 +08:00
parent 9fdacf9916
commit f646c13e9d
2 changed files with 4 additions and 3 deletions

View File

@@ -6,7 +6,7 @@
<component :is="headerIcon"/>
</el-icon>
<ellipsis class="name" hover-tip :content="title"/>
<el-icon v-if="!isRoot && designState" size="20" style="float:right;" @click="emit('delNode')">
<el-icon v-if="!isRoot && designState" size="20" style="float:right;cursor: pointer" @click.stop="emit('delNode')">
<Close/>
</el-icon>
</div>
@@ -201,7 +201,7 @@ const init = () => {
}
.node-body {
cursor: pointer;
min-height: 63px;
position: relative;
border-radius: 5px;
@@ -240,6 +240,7 @@ const init = () => {
}
.node-body-content {
cursor: pointer;
padding: 18px;
color: #656363;
font-size: 14px;