Blame view

src/views/workflow/components/flowChart.vue 432 Bytes
任超 committed
1
<!--
2 3 4
 * @Description: 功能:流程图
 * @Autor: renchao
 * @LastEditTime: 2023-05-17 10:40:57
任超 committed
5 6 7 8 9 10 11 12
-->
<template>
  <div class='flowChart'>
    <img :src="formData" alt="">
  </div>
</template>
<script>

13 14 15 16 17 18
  export default {
    props: {
      formData: {
        type: String,
        default: ''
      }
任超 committed
19 20 21 22
    }
  }
</script>
<style scoped lang="scss">
23
  @import "~@/styles/mixin.scss";
任超 committed
24

25 26 27
  .flowChart {
    margin: 20px 0;
  }
任超 committed
28
</style>