|
@@ -137,7 +137,7 @@ const handleSearch = (_: string, prefix: string) => {
|
|
|
|
|
|
<template>
|
|
|
<div class="project-config-container">
|
|
|
- <ProjectMessage @onClickItem="onSelectTestPro" />
|
|
|
+ <ProjectMessage @on-click-item="onSelectTestPro" />
|
|
|
<FunctionModule />
|
|
|
<HJFlow
|
|
|
class="hjflow-box"
|
|
@@ -146,7 +146,7 @@ const handleSearch = (_: string, prefix: string) => {
|
|
|
v-model:edges-data="edges"
|
|
|
:show-panel="true"
|
|
|
:panel-btns="['toSnake', 'layoutTB', 'saveTemplate']"
|
|
|
- @hjMethod="onNodeOperation"
|
|
|
+ @hj-method="onNodeOperation"
|
|
|
/>
|
|
|
<div class="right-message-box">
|
|
|
<TitleHeader>属性配置</TitleHeader>
|
|
@@ -154,9 +154,7 @@ const handleSearch = (_: string, prefix: string) => {
|
|
|
<div class="form-box" v-if="infoVisible">
|
|
|
<el-form rer="formRef" label-position="top">
|
|
|
<el-form-item label="节点标识名称">
|
|
|
- <el-input
|
|
|
- v-model="selectedNode!.data.information.nodeName"
|
|
|
- ></el-input>
|
|
|
+ <el-input v-model="selectedNode!.data.information.nodeName" />
|
|
|
</el-form-item>
|
|
|
<el-form-item>
|
|
|
<el-text class="mx-1" type="warning">
|
|
@@ -202,6 +200,9 @@ const handleSearch = (_: string, prefix: string) => {
|
|
|
</template>
|
|
|
|
|
|
<style scoped lang="scss">
|
|
|
+:deep(.el-input__wrapper) {
|
|
|
+ background-color: white !important;
|
|
|
+}
|
|
|
.project-config-container {
|
|
|
display: flex;
|
|
|
width: 100%;
|