vue-element-admin icon indicating copy to clipboard operation
vue-element-admin copied to clipboard

是否有弹窗操作只覆盖全屏组件的,而不是整个页面?

Open synctimes163 opened this issue 2 years ago • 1 comments

是否有弹窗操作只覆盖全屏组件的,而不是整个页面? 我用了弹窗组件他是遮住整个页面的,但是我指向让他遮住 内容 页面,不包含左侧导航栏和上面头部,要怎么实现呢?

<el-dialog
  title="提示"
  :fullscreen = true
  :visible.sync="dialogVisible"
  width="30%"
  :before-close="handleClose">
  <span>这是一段信息</span>
  <span slot="footer" class="dialog-footer">
    <el-button @click="dialogVisible = false">取 消</el-button>
    <el-button type="primary" @click="dialogVisible = false">确 定</el-button>
  </span>
</el-dialog>

synctimes163 avatar Jun 12 '22 06:06 synctimes163

image弹窗只在红框内,如何实现

synctimes163 avatar Jun 12 '22 07:06 synctimes163