element Vue 不同按钮控制同一个 el-dialog 弹窗的 title 动态显示内容

1. 定义一个变量 dailogTitleType

2. 返回一个空的变量

export default {
  data() {
    return {
      dialogTitleType:''
    }
  }
}

3. 在对应按钮的onclik方法里加入dialogTitleType变量的默认值

添加图片

编辑

 //点击新增按钮触发函数
 handleAdd: function(index, row) {
   this.dailogTitleType ="添加";
   this.addPictureDialogVisible = true;
   this.form = Object.assign({}, row);
 },
 //点击编辑按钮触发函数
 handleEdit: function(index, row) {
   this.dailogTitleType ="编辑";
   this.addPictureDialogVisible = true;
   this.form = Object.assign({}, row);  
 },

 

 

你可能感兴趣的:(Vue,element)