当前位置:   article > 正文

el-dialog销毁_销毁dialog

销毁dialog

问题描述

使用<el-dialog>弹出框时,数据不会根据点击不同而实时更新,一直都会是第一次点击显示弹出框时的数据,这时就需要在弹出框关闭时销毁。

v-if 控制

    <el-dialog
      title="修改信息"
      :visible.sync="updateTableVisible"
      center
      v-if="updateTableVisible"
      :lock-scroll="false"
      width="1000px"
    >
      <span slot="footer" class="dialog-footer">
        <el-button @click="cancelUpdate" class="doNothing">取 消</el-button>
        <el-button type="primary" @click="doUpdate" class="doButton">确 定</el-button>
      </span>

      <innerStaffUpdate :transferValue="updatePartOldValue" />
      
    </el-dialog>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
本文内容由网友自发贡献,转载请注明出处:https://www.wpsshop.cn/w/你好赵伟/article/detail/113067
推荐阅读
相关标签
  

闽ICP备14008679号