vue+element 设置弹窗_elementUI vue table 操作选项中弹出框确定dialog

1.html

停用

启用

2.data里面

data: function () {

return{

startUsingDialog:false,

startUsingLoading:false,

rowData:'',

}

},

3.方法

methods: {

startUsing(row){

this.startUsingDialog=true;

rowData=row;

},

startUsingSubmit(){

this.startUsingLoading=true;

var that=this;

var formData={};

$.get('url',formData,function(data){

if(data.code==200){

that.startUsingLoading=false;

that.startUsingDialog=false;

that.$message({

type:'success',

message:'启动成功!'

})

//重新刷新表格:

//that.queryData();

}

})

}

},

关于webdriver中弹出框的定位

对于webdriv

你可能感兴趣的:(vue+element,设置弹窗)