赞
踩
使用<el-dialog
>弹出框时,数据不会根据点击不同而实时更新,一直都会是第一次点击显示弹出框时的数据,这时就需要在弹出框关闭时销毁。
<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>
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。