2023-12-16 12:19:26 +08:00
|
|
|
<template>
|
2023-12-28 12:27:05 +08:00
|
|
|
<work-flow value="D7Rzd7Oe" />
|
2023-12-16 12:19:26 +08:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
2023-12-28 12:27:05 +08:00
|
|
|
import WorkFlow from './form/WorkFlow.vue'
|
2023-12-16 12:19:26 +08:00
|
|
|
|
|
|
|
export default {
|
|
|
|
name: 'WorkFlowEdit',
|
2023-12-28 12:27:05 +08:00
|
|
|
components: { WorkFlow },
|
2023-12-16 12:19:26 +08:00
|
|
|
data () {
|
|
|
|
return {
|
2023-12-28 12:27:05 +08:00
|
|
|
id: ''
|
2023-12-16 12:19:26 +08:00
|
|
|
}
|
|
|
|
},
|
|
|
|
mounted () {
|
|
|
|
this.id = this.$route.query.id
|
|
|
|
},
|
2023-12-28 12:27:05 +08:00
|
|
|
methods: {}
|
2023-12-16 12:19:26 +08:00
|
|
|
}
|
|
|
|
</script>
|