码迷,mamicode.com
首页 > 其他好文 > 详细

vue编辑当行数据,弹窗赋值

时间:2020-07-15 15:42:19      阅读:100      评论:0      收藏:0      [点我收藏+]

标签:ssi   dialog   visible   http   for   nbsp   页面   span   blog   

编辑如下

...
@click="handleEdit(scope.$index, scope.row)">编辑</el-button>
...

 使用 Object.assign 来传值,如果直接用

this.editForm=row
来传值,则编辑的时候会影响当行显示
//编辑
      handleEdit: function (index, row) {
        this.editFormVisible = true;//dialog对话窗口打开
        this.editForm = Object.assign({}, row);//将数据传入dialog页面
        this.editForm.index=index;//传递当前index
      }

 

参考;https://blog.csdn.net/weixin_42648692/article/details/103005916

 

vue编辑当行数据,弹窗赋值

标签:ssi   dialog   visible   http   for   nbsp   页面   span   blog   

原文地址:https://www.cnblogs.com/xiaoliu66007/p/13305077.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!