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

@@ -25,7 +25,7 @@ steps:
- export NODE_MODULES_PATH=`pwd`/node_modules - export NODE_MODULES_PATH=`pwd`/node_modules
#- npm config set registry https://registry.npm.taobao.org #- npm config set registry https://registry.npm.taobao.org
#- set NODE_OPTIONS=--openssl-legacy-provider #- set NODE_OPTIONS=--openssl-legacy-provider
- npm install # - npm install
- npm run build - npm run build
- ls /app/build/$DRONE_REPO_NAME/ - ls /app/build/$DRONE_REPO_NAME/
- echo $NODE_MODULES_PATH - echo $NODE_MODULES_PATH

View File

@@ -6,7 +6,7 @@
<component :is="headerIcon"/> <component :is="headerIcon"/>
</el-icon> </el-icon>
<ellipsis class="name" hover-tip :content="title"/> <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/> <Close/>
</el-icon> </el-icon>
</div> </div>
@@ -201,7 +201,7 @@ const init = () => {
} }
.node-body { .node-body {
cursor: pointer;
min-height: 63px; min-height: 63px;
position: relative; position: relative;
border-radius: 5px; border-radius: 5px;
@@ -240,6 +240,7 @@ const init = () => {
} }
.node-body-content { .node-body-content {
cursor: pointer;
padding: 18px; padding: 18px;
color: #656363; color: #656363;
font-size: 14px; font-size: 14px;