roleProcConf.vue
470 Bytes
<template>
<div >
<iframe :id=id :src=src class="iframe" ></iframe>
</div>
</template>
<script>
import { getToken ,Workflow} from "@/utils/auth";
export default {
name: "roleProcConf",
data(){
return{
src:"http://"+Workflow+"/itsm/index.html#/RoleProcConf"+"?access_token="+getToken(),
id:"roleProcConf_iframe"
}
}
}
</script>
<style scoped>
.iframe{
width:100%;
height:calc(100vh - 88px);
border: none;
}
</style>