This commit is contained in:
吴红兵
2025-12-02 10:37:49 +08:00
commit 1f645dad3e
1183 changed files with 147673 additions and 0 deletions

View File

@@ -0,0 +1,55 @@
<template>
<div>
<div class="output-params">
<div class="param-item">
<svg-icon :size="24" class="param-icon" name="local-db" />
<span class="param-value">{{ node.dbParams.dbName }}</span>
</div>
</div>
</div>
</template>
<script>
import common from './common.ts';
export default {
name: 'DbNode',
mixins: [common],
};
</script>
<style scoped>
/* 添加样式 */
.output-params {
padding: 8px 12px;
}
.param-item {
display: flex;
align-items: center;
margin-bottom: 4px;
padding: 3px 10px;
font-size: 13px;
color: #333;
border-radius: 4px;
font-size: 12px;
background-color: rgb(242, 244, 247);
}
.param-icon {
color: rgb(41 112 255);
font-weight: bold;
}
.param-name {
padding: 2px 5px;
background-color: #fff;
box-sizing: border-box;
margin-right: 4px;
font-size: 10px;
font-weight: bold;
border-radius: 4px;
}
.param-value {
color: #666;
font-weight: 500;
}
</style>