first commit

This commit is contained in:
2026-01-08 14:58:16 +08:00
commit 556e5d64aa
9575 changed files with 1621095 additions and 0 deletions
@@ -0,0 +1,35 @@
<script>
module.exports = {
name: "snakerStart",
props: {
define_key:{
type: String,
required: true
},
label: {
type: String,
required: true
}
},
methods:{
openChart() {
this.$refs.snakerChartRef.onOpen(this.define_key)
}
}
}
</script>
<template>
<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>
</el-row>
<snaker-chart ref="snakerChartRef"></snaker-chart>
</div>
</template>
<style scoped>
</style>