mirror of
https://gitee.com/cai_xiao_feng/lowflow-design.git
synced 2025-12-06 16:18:22 +08:00
25 lines
447 B
Vue
25 lines
447 B
Vue
<script setup lang="ts">
|
|
import Node from '../Node/index.vue'
|
|
import {CcNode} from '../Cc/index'
|
|
import Content from './content.vue'
|
|
|
|
export interface ApprovalProps {
|
|
node: CcNode
|
|
}
|
|
|
|
withDefaults(defineProps<ApprovalProps>(), {})
|
|
</script>
|
|
|
|
<template>
|
|
<Node icon="Promotion"
|
|
v-bind="$attrs"
|
|
color="rgb(50, 150, 250)"
|
|
:node="node">
|
|
<Content :node="node"/>
|
|
</Node>
|
|
</template>
|
|
|
|
<style scoped lang="scss">
|
|
|
|
</style>
|