This commit is contained in:
@jyuhsin
2026-01-22 13:53:50 +08:00
parent 7eac8b00b5
commit c50bcbf869
52 changed files with 1454 additions and 446 deletions
@@ -23,7 +23,10 @@ module.exports = {
<div>
<el-row type="flex" justify="space-between" slot="header">
<h3 style="color: var(--color-primary)">{{ label }}</h3>
<el-link type="primary" @click="openChart">流程图</el-link>
<div class="header-right">
<slot name="header-right-label"></slot>
<el-link type="primary" @click="openChart">流程图</el-link>
</div>
</el-row>
<snaker-chart ref="snakerChartRef"></snaker-chart>
</div>
@@ -31,5 +34,9 @@ module.exports = {
</template>
<style scoped>
.header-right {
display: flex;
align-items: center;
justify-content: space-between;
}
</style>