Blame view

src/views/workflow/components/dialog/txdw.vue 388 Bytes
1
<template>
2
  <iframe :src="ip +'/txdw/#/' + formData.bsmZd" frameborder="0" style="width: 100%; height:710px;"></iframe>
3
</template>
4
<script> 
5 6 7 8
  export default {
    props: {
      formData: {
        type: Object,
9 10 11
        default: () => {
          return {}
        }
12
      }
13 14 15 16 17
    },
    data () {
      return {
        ip: window._config.services.management
      }
18 19
    }
  }
20
</script>