irc_web/.svn/pristine/3e/3e3ac33b71d50fb6e55d2478cb0...

38 lines
648 B
Plaintext

<template>
<div style="flex: 1;overflow: auto">
<router-view :key="$route.path + $route.query.trialId" />
</div>
</template>
<script>
export default {
created() {
}
}
</script>
<style lang="scss">
.trial-detail{
height: 100%;
// box-sizing: border-box;
// overflow-y: auto;
.el-tabs{
height: 100%;
display: flex;
flex-direction: column;
.el-tabs__header {
margin: 0;
height: 40px;
}
.el-tabs__content{
flex: 1;
.el-tab-pane{
height: 100%;
overflow-y: auto;
box-sizing: border-box;
}
}
}
}
</style>