赞
踩
<template> <el-dialog :appendToBody="true" :visible="show" @close="close()" v-if="show" title="详情" top="2.5%" mim-width="900px" height="100%" overflow="hidden" custom-class="xx-dialog" :destroy-on-close="destroyClose" > <div class="x-html"> <iframe :src="query.url" class="iframe-container"></iframe> </div> </el-dialog> </template>
是由于style的scoped属性导致的,此时我们可以选择在该组件中混用全局样式和局部样式,将xx-dialog写入全局样式中,如下
<style lang="scss"> .xx-dialog { height: 90%; min-height: 900px; margin: 0 auto; background-color: #2a3688; .el-dialog__body { height: calc(100% - 54px); padding: 0; overflow: hidden; } .x-html { width: 100%; height: calc(100% - 40px); padding: 20px; overflow: hidden; background-color: white; .iframe-container { width: 100%; height: 100%; border: none; } } } </style>
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。