deptLeader.vue 464 Bytes
<template>
  <div >
    <iframe :id=id :src=src class="iframe" ></iframe>
  </div>
</template>

<script>
import { getToken ,Workflow} from "@/utils/auth";

export default {
  name: "deptLeader",
  data(){
    return{
      src:"http://"+Workflow+"/itsm/index.html#/deptLeader"+"?access_token="+getToken(),
      id:"deptLeader_iframe"
    }
  }

}
</script>

<style scoped>
  .iframe{
    width:100%;
    height:calc(100vh - 88px);
    border: none;
  }

</style>