Blame view

src/views/workflow/components/flowChart.vue 422 Bytes
任超 committed
1
<!--
2
 * @Description: 流程图
3
 * @Autor: renchao
4
 * @LastEditTime: 2023-07-25 09:26:01
任超 committed
5 6 7 8 9 10 11
-->
<template>
  <div class='flowChart'>
    <img :src="formData" alt="">
  </div>
</template>
<script>
12 13 14 15 16 17
  export default {
    props: {
      formData: {
        type: String,
        default: ''
      }
任超 committed
18 19 20 21
    }
  }
</script>
<style scoped lang="scss">
22
  @import "~@/styles/mixin.scss";
任超 committed
23

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